/* Profile Page Styles */

.profile-main {
    min-height: calc(100vh - 80px);
    background: #2563eb;
    padding: 2rem 0;
}

.profile-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Profile Sidebar */
.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-avatar-section {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.profile-avatar:hover {
    transform: scale(1.05);
}

.avatar-upload {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    border: 3px solid white;
    transition: background-color 0.3s ease;
}

.avatar-upload:hover {
    background: #45a049;
}

.avatar-upload input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.profile-info h2 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-size: 1.5rem;
}

.profile-info p {
    margin: 0 0 1rem 0;
    color: #7f8c8d;
    font-size: 1rem;
}

.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.premium {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.badge.verified {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.badge.registered {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

/* Profile Stats */
.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #ecf0f1;
    border-bottom: 1px solid #ecf0f1;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Profile Actions */
.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.profile-actions .btn {
    justify-content: center;
    gap: 0.5rem;
}

/* Quick Links */
.quick-links {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-links h3 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.quick-link:hover {
    background: #f8f9fa;
    color: #2563eb;
    transform: translateX(5px);
}

.quick-link i {
    width: 20px;
    text-align: center;
    color: #2563eb;
}

/* Profile Content */
.profile-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

/* Profile Tabs */
.profile-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #ecf0f1;
}

.tab-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: #7f8c8d;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tab-btn:hover {
    background: #ecf0f1;
    color: #2c3e50;
}

.tab-btn.active {
    background: white;
    color: #2563eb;
    border-bottom: 3px solid #2563eb;
}

/* Tab Content */
.tab-content {
    padding: 2rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Overview Section */
.overview-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ecf0f1;
}

.overview-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.overview-section h3 {
    margin: 0 0 1.5rem 0;
    color: #2c3e50;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-content,
.skills-content,
.experience-content,
.education-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.about-text,
.skills-list,
.experience-list,
.education-list {
    flex: 1;
}

.about-text p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

.skills-content,
.experience-content,
.education-content {
    padding: 2rem;
}

.skills-content {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.no-skills,
.no-experience,
.no-education {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

.no-skills::before {
    content: '🎯';
    display: block;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.no-experience::before {
    content: '💼';
    display: block;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.no-education::before {
    content: '🎓';
    display: block;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.skill-tag {
    background: linear-gradient(135deg, #667eea 0%, #1038da 100%);
    color: white;
    padding: 0.75rem 1.25rem;
    margin: 0.6rem 0;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.skill-tag:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.skill-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.skill-tag:hover::before {
    left: 100%;
}

.experience-item,
.education-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.experience-item:last-child,
.education-item:last-child {
    margin-bottom: 0;
}

.experience-title,
.education-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.experience-company,
.education-school {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.experience-period,
.education-period {
    color: #7f8c8d;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.experience-description,
.education-description {
    color: #2c3e50;
    line-height: 1.6;
}

/* Portfolio Tab */
.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.portfolio-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.25rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.empty-portfolio {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #7f8c8d;
}

.empty-portfolio i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #bdc3c7;
}

.empty-portfolio h4 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
}

.empty-portfolio p {
    margin: 0 0 1.5rem 0;
}

.portfolio-item {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    background: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdc3c7;
    font-size: 2rem;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.portfolio-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.portfolio-tag {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
}

/* Reviews Tab */
.reviews-header {
    margin-bottom: 2rem;
}

.reviews-header h3 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-size: 1.25rem;
}

.reviews-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.rating-overview {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-stars i {
    color: #f39c12;
}

.rating-count {
    color: #7f8c8d;
}

.empty-reviews {
    text-align: center;
    padding: 3rem;
    color: #7f8c8d;
}

.empty-reviews i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

.empty-reviews h4 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
}

.empty-reviews p {
    margin: 0;
}

.review-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-client {
    font-weight: 600;
    color: #2c3e50;
}

.review-date {
    color: #7f8c8d;
    font-size: 0.875rem;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.review-text {
    color: #2c3e50;
    line-height: 1.6;
}

/* Settings Tab - Blue Theme */
.settings-section {
    background: #f8f9ff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.settings-section:last-child {
    margin-bottom: 0;
}

.settings-section h3 {
    color: #2563eb;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2563eb;
    font-size: 1.25rem;
}

.settings-form {
    max-width: 600px;
}

.settings-form .form-group {
    margin-bottom: 1.5rem;
}

.settings-form .form-group label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

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

.settings-form .form-group input:focus,
.settings-form .form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: #f0f4ff;
}

.settings-form .form-group input:hover,
.settings-form .form-group select:hover {
    border-color: #2563eb;
}

.settings-form .form-group select {
    cursor: pointer;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%232563eb" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

.settings-form .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.settings-form .btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.settings-form .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.checkbox-label:hover {
    background: #f0f4ff;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #2563eb;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
    display: block;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #2563eb;
    border-color: #2563eb;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-content strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.25rem;
}

.checkbox-content small {
    color: #7f8c8d;
    line-height: 1.4;
}

/* Danger Zone */
.danger-zone {
    border: 2px solid #e74c3c;
    border-radius: 8px;
    padding: 1.5rem;
    background: #fdf2f2;
}

.danger-zone h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.danger-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.danger-warning {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e74c3c;
    font-size: 0.875rem;
    margin: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal.active .modal-content {
    transform: scale(1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 2px solid #f1f3f4;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header h3 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-header h3::before {
    content: '👤';
    font-size: 1.25rem;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 1.25rem;
    color: white;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    background: #fafbfc;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem 2rem 2rem 2rem;
    border-top: 2px solid #f1f3f4;
    background: white;
    border-radius: 0 0 20px 20px;
}

/* Form Styles for Modal */
.modal .form-group {
    margin-bottom: 1.75rem;
}

.modal .form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    position: relative;
}

.modal .form-group label::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 1px;
}

.modal input[type="text"],
.modal input[type="number"],
.modal textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    color: #2c3e50;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    font-family: inherit;
}

.modal input[type="text"]:focus,
.modal input[type="number"]:focus,
.modal textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
    transform: translateY(-1px);
}

.modal textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.modal input::placeholder,
.modal textarea::placeholder {
    color: #a0aec0;
    font-style: italic;
}

/* Enhanced Button Styles */
.modal .btn {
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.modal .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.modal .btn:hover::before {
    left: 100%;
}

.modal .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.modal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.modal .btn-primary:active {
    transform: translateY(0);
}

.modal .btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.modal .btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-1px);
}

/* Form Animation */
.modal.active .form-group {
    animation: slideInUp 0.4s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.modal.active .form-group:nth-child(1) { animation-delay: 0.1s; }
.modal.active .form-group:nth-child(2) { animation-delay: 0.2s; }
.modal.active .form-group:nth-child(3) { animation-delay: 0.3s; }
.modal.active .form-group:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    font-weight: 500;
    min-width: 300px;
    backdrop-filter: blur(10px);
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    background: #e74c3c;
}

.notification.warning {
    background: #f39c12;
}

.notification::before {
    content: '✓';
    font-size: 1.2rem;
    font-weight: bold;
}

.notification.error::before {
    content: '✕';
}

.notification.warning::before {
    content: '⚠';
}

/* Responsive Design */
@media (max-width: 1024px) {
    .profile-layout {
        grid-template-columns: 300px 1fr;
        gap: 1.5rem;
    }
    
    .profile-card {
        padding: 1.5rem;
    }
    
    .tab-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .profile-main {
        padding: 1rem 0;
    }
    
    .profile-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .profile-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1 1 50%;
        min-width: 120px;
    }
    
    .about-content,
    .skills-content,
    .experience-content,
    .education-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .danger-actions {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        top: 10px;
        min-width: auto;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

/* Responsive Settings Styles */
@media (max-width: 768px) {
    .settings-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .settings-form .form-group input,
    .settings-form .form-group select {
        padding: 0.625rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .settings-form .btn-primary {
        padding: 0.75rem 1.5rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .profile-card {
        padding: 1rem;
    }
    
    .tab-content {
        padding: 1rem;
    }
    
    .profile-avatar {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    
    .tab-btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .overview-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .settings-section {
        padding: 1rem;
    }
    
    .settings-form .form-group {
        margin-bottom: 1rem;
    }
}