/*discover homepage and provate links og*/
/* Discover Page Specific Styling */
/*.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.intro-text {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-text h3 {
    color: #2d5a3d;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.welcome-text p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.version {
    font-size: 0.85rem;
    color: #68d391;
    font-style: italic;
    margin-top: 1rem;
}

.auth-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.auth-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(72, 187, 120, 0.2);
    min-width: 300px;
    max-width: 400px;
    flex: 1;
}

.auth-card h3 {
    color: #2d5a3d;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #48bb78;
    box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: #4a5568;
    padding: 0.5rem 0;
    line-height: 1.4;
}

.form-group input[type="checkbox"] {
    width: auto !important;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, #38a169, #2f855a);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.hidden {
    display: none !important;
}

/* Collapsible Submit Form */
/* all css below was working and fine. the above idk what its for!!!!!!!*/

/*
.submit-toggle {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-toggle:hover {
    background: linear-gradient(135deg, #38a169, #2f855a);
    transform: translateY(-1px);
}

.submit-form-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.submit-form-content.expanded {
    max-height: 600px;
}

.user-links {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(72, 187, 120, 0.2);
    margin-bottom: 2rem;
}

.user-links h3 {
    color: #2d5a3d;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

/* User Saved Links Styling */

/*
#linksList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-section {
    margin-bottom: 2rem;
}

.category-header {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1), rgba(56, 161, 105, 0.05));
    border: 1px solid rgba(72, 187, 120, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-header:hover {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.15), rgba(56, 161, 105, 0.08));
    border-color: rgba(72, 187, 120, 0.3);
}

.category-header h4 {
    margin: 0;
    color: #2d5a3d;
    font-size: 1.1rem;
}

.category-icon {
    font-size: 1.2rem;
    color: #48bb78;
}

.category-count {
    background: rgba(72, 187, 120, 0.2);
    color: #2f855a;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: auto;
}

.tap-here {
    background: rgba(72, 187, 120, 0.3);
    color: #2f855a;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-header:hover .tap-here {
    background: rgba(72, 187, 120, 0.4);
    transform: scale(1.05);
}

.category-links {
    padding-left: 1rem;
}

.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.category-content.expanded {
    max-height: 2000px;
    padding: 1rem 0;
}

.link-item {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(72, 187, 120, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.link-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(72, 187, 120, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.link-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d5a3d;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.link-title:hover {
    color: #38a169;
}

.link-url {
    font-size: 0.9rem;
    color: #68d391;
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.link-description {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.link-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #68d391;
    flex-wrap: wrap;
}

.link-category {
    background: rgba(72, 187, 120, 0.1);
    color: #2f855a;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.link-tags {
    color: #4a5568;
}

#message {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

/* Mobile responsiveness */

/*
@media (max-width: 768px) {
    .auth-section {
        flex-direction: column;
        align-items: center;
    }
    
    .auth-card {
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }
    
    .page-container {
        padding: 1rem;
    }
    
    .form-group label {
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .form-group label span {
        flex: 1;
    }
    
    .link-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}
*/
