@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@400;600;700&display=swap');

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

body {
    font-family: 'Noto Kufi Arabic', sans-serif;
    background-color: #F9F9F9;
    color: #000;
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: #254D6F;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: invert(1) grayscale(1) brightness(2);
}

.logo-link {
    display: inline-block;
    line-height: 0;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #F9F9F9;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    padding: 8px 16px;
    transition: background-color 0.2s;
}

nav a:hover,
nav a.active {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    background-color: #254D6F;
    color: #F9F9F9;
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.hero-button {
    display: inline-block;
    background-color: #F9F9F9;
    color: #254D6F;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

.hero-button:hover {
    background-color: #e0e0e0;
}

/* Books Section */
.books-section {
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #254D6F;
    margin-bottom: 40px;
    text-align: center;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
}

/* Book Card */
.book-card {
    background-color: #fff;
    border: 0px solid #ddd;
    padding: 0;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.book-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.book-card a {
    text-decoration: none;
    color: inherit;
}

.book-card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.book-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 0;
    border: none;
    border-bottom: 1px solid #eee;
}

.book-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #254D6F;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.book-card .author {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.book-card button {
    width: 100%;
    padding: 12px;
    background-color: #254D6F;
    color: #F9F9F9;
    border: none;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Noto Kufi Arabic', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: auto;
    border-top: 1px solid #254D6F;
}

.book-card button:hover {
    background-color: #1a3a52;
}

.book-card button.remove {
    background-color: #666;
    border-top: 1px solid #666;
}

.book-card button.remove:hover {
    background-color: #444;
}

/* Library Controls */
.library-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
}

.status-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.status-tabs button {
    font-family: 'Noto Kufi Arabic', sans-serif;
    font-weight: 500;
    background: none;
    color: #000;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.2s;
    border-radius: 4px 4px 0 0;
    border-bottom: 2px solid transparent;
}

.status-tabs button:hover {
    background-color: #f5f5f5;
}

.status-tabs button.active {
    color: #254D6F;
    border-bottom: 2px solid #254D6F;
    font-weight: bold;
}

.shelf-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.shelf-controls button {
    padding: 8px 15px;
    font-size: 0.9em;
}

.shelf-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.shelf-tag {
    background-color: #f0f8ff;
    color: #254D6F;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9em;
    border: 1px solid #e0f0ff;
}

.shelf-tag span {
    cursor: pointer;
    font-weight: bold;
    margin-right: 5px;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    color: white;
}

.status-want {
    background-color: #3498db;
}

.status-current {
    background-color: #f39c12;
}

.status-read {
    background-color: #27ae60;
}

.book-card button.status-want {
    background-color: #3498db;
}

.book-card button.status-current {
    background-color: #f39c12;
}

.book-card button.status-read {
    background-color: #27ae60;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    font-size: 16px;
    color: #666;
}

.breadcrumb a {
    color: #254D6F;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 10px;
    color: #999;
}

.breadcrumb .current {
    color: #000;
}

/* Book Detail Page */
.book-detail {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 40px;
    margin: 20px 0 60px;
    display: flex;
    flex-direction: column;
}

.book-detail-main {
    display: flex;
    gap: auto 40px;
    margin-bottom: 40px;
}

.book-detail-cover {
    flex-shrink: 0;
    width: 300px;
}

.book-detail-cover img {
    width: 80%;
    height: auto;
    object-fit: cover;
}

.book-detail-info {
    flex: 1;
    padding-top: 20px;
}

.book-detail-info h1 {
    font-size: 30px;
    font-weight: 700;
    color: #254D6F;
    margin-bottom: 10px;
    line-height: 1.2;
}

.book-detail-info .author {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
    display: block;
}

.book-detail-info .description-title {
    font-size: 20px;
    font-weight: 700;
    color: #254D6F;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    padding-top: 20px;
}

.book-detail-info .description {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #333;
}

.book-detail-action {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.book-detail-action button {
    padding: 12px;
    background-color: #254D6F;
    color: #F9F9F9;
    border: none;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Noto Kufi Arabic', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
}

.book-detail-action button:hover {
    background-color: #1a3a52;
}

.book-detail-action button.remove {
    background-color: #666;
}

.book-detail-action button.remove:hover {
    background-color: #444;
}

/* Status and Shelf Selectors */
.status-selector,
.shelf-selector {
    align-items: center;
    justify-content: center;
    width: 300px;
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status-selector label,
.shelf-selector label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #254D6F;
}

.status-selector select,
.shelf-selector select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-left: 0;
    margin-bottom: 10px;
}

.status-selector .remove-button {
    background-color: #e74c3c;
    color: white;
    padding: 12px;
    margin-bottom: auto;
    margin-top: 0;
}

.status-selector .remove-button:hover {
    background-color: #c0392b;
}

.current-shelves {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Library Meta */
.library-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 15px;
    font-size: 0.9em;
    text-align: right;
}

/* Library Section */
.library-section {
    padding: 40px 0 60px;
    min-height: 60vh;
    justify-content: center;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #254D6F;
    margin-bottom: 12px;
}

.page-description {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Library Sections Wrapper - 2 columns on desktop */
.library-sections-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    width: 100%;
}

.library-section-container {
    margin-bottom: 0;
    padding: 20px;
    width: auto;
}

.library-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #254D6F;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #254D6F;
}

.section-icon {
    font-size: 28px;
}

.section-count {
    font-size: 18px;
    font-weight: 400;
    color: #666;
}

.delete-shelf-btn {
    margin-right: auto;
    background-color: #e74c3c;
    color: white;
    border: none;
    font-size: 24px;
    font-weight: bold;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.delete-shelf-btn:hover {
    background-color: #c0392b;
}

.create-shelf-btn {
    padding: 12px 24px;
    background-color: #27ae60;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Noto Kufi Arabic', sans-serif;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.create-shelf-btn:hover {
    background-color: #229954;
}

/* Library Controls Bar */
.library-controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filter-dropdown {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Noto Kufi Arabic', sans-serif;
    cursor: pointer;
    min-width: 200px;
}

/* Books Grid for Sections */
.books-grid-sections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 20px;
}

/* Small shelf tags on book cards */
.book-shelves {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}

.shelf-tag-small {
    background-color: #f0f8ff;
    color: #254D6F;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    border: 1px solid #e0f0ff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.shelf-tag-small span {
    cursor: pointer;
    font-weight: bold;
    color: #e74c3c;
}

.shelf-tag-small span:hover {
    color: #c0392b;
}

/* Add shelf dropdown in library cards */
.shelf-add-dropdown {
    width: 100%;
    max-width: 100%;
    padding: 8px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    font-family: 'Noto Kufi Arabic', sans-serif;
    cursor: pointer;
    margin-top: 8px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.empty-state h2 {
    font-size: 28px;
    font-weight: 700;
    color: #254D6F;
    margin-bottom: 16px;
}

.empty-state p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.button-primary {
    font-family: 'Noto Kufi Arabic', sans-serif;
    font-weight: 500;
    display: inline-block;
    background-color: #254D6F;
    color: #F9F9F9;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

.button-primary:hover {
    background-color: #1a3a52;
}

/* Footer */
.footer {
    background-color: #254D6F;
    color: #F9F9F9;
    padding: 50px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #F9F9F9;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

/* Status Dropdown Styling - Unified */
.status-dropdown,
.status-selector select,
.shelf-selector select {
    width: 100%;
    max-width: 250px;
    padding: 12px;
    background-color: #254D6F;
    color: #F9F9F9;
    border: none;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Noto Kufi Arabic', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
    border-top: 1px solid #254D6F;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 16px;
    padding-left: 35px;
}

.status-dropdown:hover,
.status-selector select:hover,
.shelf-selector select:hover {
    background-color: #1a3a52;
}

.status-dropdown:focus,
.status-selector select:focus,
.shelf-selector select:focus {
    outline: 2px solid #1a3a52;
    outline-offset: 2px;
}

.status-dropdown option,
.status-selector select option,
.shelf-selector select option {
    background-color: #fff;
    color: #000;
    padding: 10px;
}

/* Unified button styling */
.add-to-library,
.status-selector button,
.shelf-selector button,
.book-detail-action button.add-button {
    width: 100%;
    max-width: 250px;
    padding: 12px;
    background-color: #254D6F;
    color: #F9F9F9;
    border: none;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Noto Kufi Arabic', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: auto;
    border-top: 1px solid #254D6F;
}

.add-to-library:hover,
.status-selector button:hover,
.shelf-selector button:hover,
.book-detail-action button.add-button:hover {
    background-color: #1a3a52;
}

/* Remove button styling */
.status-selector .remove-button,
.book-detail-action button.remove {
    background-color: #e74c3c;
    border-top: 1px solid #e74c3c;
}

.status-selector .remove-button:hover,
.book-detail-action button.remove:hover {
    background-color: #c0392b;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .library-sections-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .book-detail-main {
        flex-direction: column;
        gap: 20px;
    }
    
    .book-detail-cover {
        width: 60%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .book-detail-cover img {
        width: 100%;
        height: 100%;
    }
    
    .book-detail-info {
        padding-top: 0;
        text-align: center;
    }
    
    .book-detail-info h1 {
        font-size: 32px;
    }
    
    .book-detail-info .author {
        font-size: 20px;
    }
    
    .book-detail-info .description-title {
        text-align: right;
        padding-top: 20px;
    }

    .book-detail-action {
        flex-direction: column;
        align-items: center;
    }
    
    .book-detail-action button {
        width: 100%;
        padding: 14px 0;
    }
    
    .books-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .books-grid-sections {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .book-card img {
        height: auto;
    }
    
    nav {
        gap: 15px;
    }
    
    nav a {
        font-size: 16px;
        padding: 6px 12px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .library-controls-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-dropdown {
        width: 100%;
        min-width: auto;
    }
    
    .library-section-title {
        font-size: 22px;
        flex-wrap: wrap;
    }
    
    .section-icon {
        font-size: 26px;
    }
    
    .status-dropdown,
    .status-selector select,
    .shelf-selector select,
    .add-to-library,
    .status-selector button,
    .shelf-selector button,
    .book-detail-action button.add-button {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .books-section {
        padding: 40px 0;
    }
    
    .book-detail {
        padding: 24px;
    }
    
    .book-detail-info h1 {
        font-size: 26px;
    }
    
    .books-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

}

/* Notification */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background-color: #27ae60;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.notification.error {
    background-color: #e74c3c;
}

.notification.success {
    background-color: #27ae60;
}

.shelf-buttons {
    display: flex;
    gap: 10px;
}

.manage-shelves-btn {
    padding: 12px 24px;
    background-color: #e74c3c;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Noto Kufi Arabic', sans-serif;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.manage-shelves-btn:hover {
    background-color: #c0392b;
}

/* --- Modal Styles (Shelf Management) --- */
.modal {
    font-family: 'Noto Kufi Arabic', sans-serif;
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal input {
    font-family: 'Noto Kufi Arabic', sans-serif;
    font-weight: 300;
}

.modal input:focus {
    font-family: 'Noto Kufi Arabic', sans-serif;
    font-weight: 300;
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto; /* 10% from the top and centered */
    padding: 30px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 600px;
    border-radius: 8px;
    position: relative;
}

.close-button {
    color: #aaa;
    float: left;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
}

.modal-content h2 {
    color: #254D6F;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.create-shelf-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.create-shelf-section h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.create-shelf-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.create-shelf-section input {
    padding: 10px;
    width: 85%;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-left: 10px;
}

.create-shelf-section button {
    font-family: 'Noto Kufi Arabic', sans-serif;
    font-weight: 400;
    padding: 10px 15px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.shelf-management-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shelf-management-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.shelf-management-item span {
    font-weight: 600;
}

.remove-shelf-btn {
    font-family: 'Noto Kufi Arabic', sans-serif;
    font-weight: 400;
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.remove-shelf-btn:hover {
    background-color: #c0392b;
}

.session-popup {
    display: none;             /* hide by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;             /* ensure above all content */
    justify-content: center;
    align-items: center;
}

.session-popup.show {
     display: flex; 
}

.session-popup-content {
  position: relative;
  background: #fff;
  padding: 70px 20px 40px 20px;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
}

.session-popup .close {
  position: absolute;
  top: 10px;
  right: 22px;
  cursor: pointer;
  font-size: 30px;
}

.session-popup p {
  font-size: 20px;
  margin-bottom: 30px;
}
