/* 
 * LMS Mobile Redesign - Premium Theme 
 * Primary Color: #1595b9
 * Dark Text: #1d2125
 * Background: #f8f9fa
 */

:root {
    --primary-color: #1595b9;
    --primary-dark: #107a98;
    --accent-color: #ff9800;
    /* For warnings/due dates */
    --text-dark: #1d2125;
    --text-medium: #6a737b;
    --text-light: #9ca6af;
    --bg-body: #f8f9fa;
    --bg-card: #ffffff;
    --border-radius-lg: 16px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --font-main: 'Inter', sans-serif;
    --nav-height: 70px;
}

/* Reset & Basics */
ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Base Styles */
body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

.app-container {
    max-width: 480px;
    /* Mobile constraint */
    margin: 0 auto;
    min-height: 100vh;
    background-color: var(--bg-body);
    position: relative;
    overflow-x: hidden;
}

/* Icon Buttons */
.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-dark);
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover,
.icon-btn:active {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Header */
.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    background-color: var(--bg-body);
    /* Transparent-ish look */
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
    background-color: rgba(248, 249, 250, 0.9);
}

.page-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.header-actions {
    width: 40px;
    /* Balance back button */
}

/* Main Content */
.main-content {
    padding: 8px 20px 100px 20px;
    /* Top Right Bottom Left */
}

.section {
    margin-bottom: 32px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    background-color: var(--bg-card);
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    transition: border-color 0.2s;
}

.search-bar:focus-within {
    border-color: var(--primary-color);
}

.search-icon {
    color: var(--text-light);
    margin-right: 12px;
}

.search-bar input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.search-bar input::placeholder {
    color: var(--text-light);
}

/* Course Card */
.course-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.course-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    /* Align top */
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.course-card:active {
    transform: scale(0.98);
}

.course-image {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.course-icon {
    font-size: 1.25rem;
}

.course-info {
    flex: 1;
    padding-right: 24px;
    /* Space for more button */
}

.course-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-meta {
    font-size: 0.8rem;
    color: var(--text-medium);
    margin: 0 0 12px 0;
}

.progress-bar-container {
    height: 6px;
    background-color: #eee;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
    width: 100%;
}

.progress-bar {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.progress-text {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
    text-align: right;
}

.course-card .more-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    color: var(--text-light);
}

/* Timeline */
.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline-actions {
    display: flex;
    gap: 8px;
}

.filter-badge {
    background-color: var(--bg-card);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-medium);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.timeline-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-medium);
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-item {
    display: flex;
    gap: 16px;
}

.time-col {
    width: 48px;
    padding-top: 4px;
    text-align: right;
    flex-shrink: 0;
}

.time {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.task-card {
    flex: 1;
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    /* Center items vertically */
    gap: 12px;
}

.task-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.task-icon.due {
    background-color: #ffebee;
    color: #d32f2f;
}

.task-icon.assignment {
    background-color: #e3f2fd;
    color: #1976d2;
}

.task-details {
    flex: 1;
}

.task-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.task-course {
    font-size: 0.75rem;
    color: var(--text-medium);
    margin: 0 0 8px 0;
}

.status-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.status-badge.due-soon {
    background-color: #fff3e0;
    color: #f57c00;
}

/* Bottom Nav */
.bottom-nav {
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    max-width: 480px;
    /* Constrain */
    margin: 0 auto;
    right: 0;
    /* Center it */
    height: var(--nav-height);
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    z-index: 100;
    padding-bottom: env(safe-area-inset-bottom);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    /* Default color */
    text-decoration: none;
    font-size: 0.7rem;
    gap: 4px;
    width: 60px;
}

.nav-item i {
    font-size: 1.25rem;
    transition: color 0.2s;
}

.nav-item.active {
    color: var(--primary-color);
}

.nav-item:hover {
    color: var(--primary-dark);
}

.nav-item .notification-badge-wrapper {
    position: relative;
    display: inline-block;
}

.nav-item .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #f44336;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 4px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
    border: 2px solid white;
}

.avatar-circle {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
}


/* Header Actions */
.header-actions {
    display: flex;
    gap: 8px;
}

/* Notification List */
.notification-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notification-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
}

.notification-card.unread {
    background-color: aliceblue;
    /* Very light blue tint */
    border-left: 3px solid var(--primary-color);
}

.notification-card:hover {
    background-color: #f1f3f4;
}

.notif-icon-wrapper {
    width: 36px;
    height: 36px;
    background-color: var(--bg-body);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    flex-shrink: 0;
}

.notification-card.unread .notif-icon-wrapper {
    color: var(--primary-color);
    background-color: white;
}

.notif-content {
    flex: 1;
}

.notif-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--text-dark);
}

.notif-text {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin: 0 0 6px 0;
    line-height: 1.4;
}

.notif-time {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
}

.notif-action {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.8rem;
}

.load-more-container {
    text-align: center;
    padding: 20px 0;
}

.text-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Course Detail Specifics */
.course-header-card {
    background-color: var(--bg-card);
    padding: 24px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 0 0 24px 24px;
    box-shadow: var(--shadow-md);
}

.course-header-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.course-header-code {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 16px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
}

/* Tabs */
.tabs-container {
    padding: 0 20px;
    margin-bottom: 20px;
}

.tabs-header {
    display: flex;
    background-color: var(--bg-card);
    padding: 4px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.tab-item {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-medium);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.2s;
}

.tab-item.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

/* Accordion/Modules */
.module-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px 20px;
    /* Bottom padding for nav */
}

.module-item {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.module-header {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background-color: #fff;
    transition: background-color 0.2s;
}

.module-header:active {
    background-color: #f8f9fa;
}

.module-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.module-content {
    border-top: 1px solid #f0f0f0;
}

.content-item {
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s;
}

.content-item:active {
    background-color: #f8f9fa;
}

.content-item:last-child {
    border-bottom: none;
}

.content-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: #e3f2fd;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.content-icon.pdf {
    background-color: #ffebee;
    color: #e53935;
}

.content-icon.assignment {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.content-info {
    flex: 1;
}

.content-info h4 {
    margin: 0 0 4px 0;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-dark);
}

.content-meta {
    font-size: 0.75rem;
    color: var(--text-medium);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-row {
    display: flex;
    gap: 4px;
}

.meta-label {
    font-weight: 600;
}

/* Assignment Page Styles */
.assignment-header-card {
    background-color: var(--bg-card);
    padding: 24px 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.assign-icon-large {
    width: 60px;
    height: 60px;
    background-color: #ffebee;
    color: #e91e63;
    /* Pink for assignments */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.assign-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text-dark);
}

.assign-course {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.assign-dates {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
}

.date-row {
    display: flex;
    justify-content: space-between;
}

.date-label {
    color: var(--text-light);
}

.date-value {
    color: var(--text-dark);
    font-weight: 500;
}

.date-row.due .date-value {
    color: #d32f2f;
}

/* Instructions */
.card-content {
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.section-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--text-dark);
}

.instruction-list {
    list-style-type: disc;
    padding-left: 20px;
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.5;
}

.instruction-list li {
    margin-bottom: 8px;
}

/* Status Card */
.status-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.status-row {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.status-row:last-child {
    border-bottom: none;
}

.status-row.success-bg {
    background-color: #e8f5e9;
    border-bottom-color: #c8e6c9;
}

.status-row.success-bg-light {
    background-color: #f1f8e9;
}

.status-label {
    font-size: 0.75rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.status-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.text-success {
    color: #2e7d32;
}

.text-muted {
    color: var(--text-light);
    font-size: 0.85rem;
}

.font-bold {
    font-weight: 700;
}

/* File Attachment */
.file-attachment {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    margin-top: 4px;
}

.file-icon-wrapper {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e3f2fd;
    color: #1565c0;
    border-radius: 6px;
    font-size: 1.1rem;
}

.file-details {
    flex: 1;
    overflow: hidden;
}

.file-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.file-meta {
    font-size: 0.75rem;
    color: var(--text-light);
}

.comment-link {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Buttons */
.action-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.btn {
    width: 100%;
    padding: 14px;
    border-radius: var(--border-radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: all 0.2s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(21, 149, 185, 0.2);
}

.btn-primary:active {
    background-color: var(--primary-dark);
    transform: scale(0.98);
}

.btn-outline-danger {
    background-color: transparent;
    border: 1px solid #ffcdd2;
    color: #d32f2f;
}

/* Profile Page Styles */
.profile-header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 20px;
    background-color: var(--bg-card);
    border-radius: 0 0 24px 24px;
    margin: -8px -20px 24px -20px;
    /* Pull to edges and counteract main padding */
    box-shadow: var(--shadow-sm);
}

.profile-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #e3f2fd;
    /* Light blue */
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    text-align: center;
}

.btn-small-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-small-outline:active {
    background-color: #f0f7ff;
}

.info-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    padding: 8px 0;
}

.info-row {
    display: flex;
    align-items: flex-start;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-icon {
    width: 24px;
    margin-right: 16px;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 2px;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.75rem;
    color: var(--text-medium);
    margin-bottom: 4px;
}

.info-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 2px;
    word-break: break-all;
}

.info-meta {
    font-size: 0.75rem;
    color: var(--text-light);
}

.menu-list {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
    font-size: 0.9rem;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:active {
    background-color: #f8f9fa;
}

.menu-item i {
    color: var(--text-light);
    font-size: 0.8rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.grid-item {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: transform 0.2s;
}

.grid-item:active {
    transform: scale(0.98);
}

.grid-icon {
    width: 48px;
    height: 48px;
    background-color: #f5f5f5;
    border-radius: 12px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.btn-text {
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
}


/* Message Drawer */
.message-drawer {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 1000;
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.message-drawer.open {
    top: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    background-color: #fff;
}

.drawer-user-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 4px;
}

.user-text {
    text-align: center;
}

.drawer-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.drawer-status {
    font-size: 0.75rem;
    color: var(--text-light);
}

.drawer-body {
    flex: 1;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.empty-state-message {
    text-align: center;
    color: var(--text-medium);
}

.space-title {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.space-desc {
    font-size: 0.9rem;
    font-style: italic;
    max-width: 240px;
    margin: 0 auto;
}

.drawer-footer {
    padding: 12px 16px;
    border-top: 1px solid #f0f0f0;
    background-color: #fff;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background-color: #f0f2f5;
    border-radius: 20px;
    padding: 8px 16px;
}

.msg-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
    padding: 4px;
}

.send-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
}