* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: white;
    min-height: 100vh;
    padding-top: 10px;
}

.logo {
    width: 150px;
    height:auto;
    margin-bottom: 3rem;
    margin-right: 1rem;
    align-self:flex-end

}

.container {
    text-align: left;
    max-width: 800px;
    padding: 2rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.content-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1rem;
    width: 100%;
}

.tagline {
    font-size: 2rem;
    color: #263355;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    flex: 1;
}

.description {
    font-size: 1.6rem;
    color: #555;
    flex: 1;
    text-align: left;
}

.search-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #e9ecef;
    width: 100%;
    position: relative;
}

.search-input {
    width: 100%;
    max-width: 400px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    color: #263355;
    outline: none;
    margin-bottom: 1rem;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: #4fc3f7;
}

.search-input::placeholder {
    color: rgb(200,200,200);
}

.website-field {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.website-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    color: #263355;
    outline: none;
    transition: border-color 0.3s;
}

.website-input:focus {
    border-color: #4fc3f7;
}

.website-input::placeholder {
    color: rgb(200,200,200);
}

.remove-website-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-website-btn:hover {
    background: #c82333;
}

.add-website-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s;
    margin-bottom: 1rem;
}

.add-website-btn:hover {
    background: #218838;
}

.search-container.disabled {
    opacity: 0.6;
    pointer-events: none;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    z-index: 10;
}

.loading-overlay.active {
    display: flex;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e9ecef;
    border-top: 4px solid #4fc3f7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    margin-left: 15px;
    color: #263355;
    font-size: 1.1rem;
    font-weight: 500;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.search-button {
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.search-button:disabled,
.search-button[disabled]{
    background: rgb(200,200,200);
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.4);
}

.features {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: nowrap;
    width: 100%;
}

.feature {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    flex: 1;
    min-width: 200px;
    max-width: none;
}

.feature h3 {
    color: #263355;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.8
}

.footer {
    padding: 1rem 2rem;
    margin-top: 2rem;
}

.footer-content {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    height: 35px;
    width: auto;
    position: relative;
    top: -20px;
}

.footer-contact {
    color: #999;
    font-size: 0.9rem;
    text-align: right;
    line-height: 1.4;
}

.footer-contact a {
    color: #263355;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #4fc3f7;
}

        @media (max-width: 768px) {
            .header {
                padding: 0.75rem 1rem;
            }
            
            .header-logo {
                height: 40px;
            }
            
            .content-row {
                flex-direction: column;
                gap: 1rem;
            }
            
            .tagline {
                font-size: 1.8rem;
            }
            
            .description {
                text-align: left;
            }
            
            .container {
                padding: 1rem;
            }
            
            body {
                padding-top: 80px;
            }
            
            .container {
                min-height: calc(100vh - 80px);
            }
            
            .features {
                flex-direction: column;
                align-items: center;
            }
            
            .feature {
                max-width: 100%;
                width: 100%;
            }
            
            .footer {
                padding: 0.75rem 1rem;
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            .footer-contact {
                text-align: center;
                font-size: 0.8rem;
            }
            
            .footer-logo {
                height: 30px;
            }
        }

#searchContainer p {
    color: #666;
}
#searchContainer a {
    color: #218838;
}

#searchContainer a:hover {
    text-decoration: underline;
}
