/* css/style.css */
.redirect-checker-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
}

.redirect-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.button-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.redirect-button {
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.redirect-button:hover {
    background-color: #005177;
}

.redirect-results {
    margin-top: 20px;
}

.redirect-item {
    padding: 10px;
    margin-bottom: 5px;
    background: white;
    border-left: 4px solid #0073aa;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.redirect-loading {
    text-align: center;
    padding: 10px;
    color: #666;
}
