#topbar {
    padding-left: 20px;
    padding-right: 20px;
    z-index: 101;
}


#root {
    background: url(/tlo.webp) no-repeat center;
    background-size: cover;
}

.avatar {
    background: #00000080;
}

#lilianna-image {
    width: 350px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    #lilianna-image {
        width: 250px;
    }
}

.logo a{
    font-size: 27px;
    padding: 0;
}

#history-messages {
    width: 400px;
}

#summary-modal .modal-content {
    max-width: 1200px;
    margin: 30px auto;
}

#summary-modal #summary-content {
    display: flex;
    justify-content: space-between;
}

.summary-section {
    margin: 10px;
}

.social-media-icons {
    margin: 0 0 0 10px;
}

.social-icon {
    width: 25px;
    height: 25px;
}

.paczkomat-modal-content {
    width: 100%;
    height: 100%;
    background-color: #fff;
    margin: 0 auto;
    padding: 20px 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

#payment-modal,
#login-modal,
#paczkomat-modal,
#summary-modal {
    display: none;
}

.modal-content {
    background-color: #fefefe;
    margin: 50px auto;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
}

#login-modal .modal-content {
    width: 400px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    margin-right: 30px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#payment-form {
    width: 100%;
    min-width: 300px;
    align-self: center;
    box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
        0px 2px 5px 0px rgba(50, 50, 93, 0.1),
        0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
    border-radius: 7px;
    padding: 40px;
}

#payment-message {
    color: rgb(105, 115, 134);
    font-size: 16px;
    line-height: 20px;
    padding-top: 12px;
    text-align: center;
}

#payment-element {
    margin-bottom: 24px;
}

.spinner,
.spinner:before,
.spinner:after {
    border-radius: 50%;
}

.spinner {
    font-size: 22px;
    text-indent: -99999px;
    margin: 0px auto;
    position: relative;
    width: 20px;
    height: 20px;
    box-shadow: inset 0 0 0 2px;
    transform: translateZ(0);
}

.spinner:before,
.spinner:after {
    position: absolute;
    content: "";
}

.spinner:before {
    width: 10.4px;
    height: 20.4px;
    background: #5469d4;
    border-radius: 20.4px 0 0 20.4px;
    top: -0.2px;
    left: -0.2px;
    transform-origin: 10.4px 10.2px;
    animation: loading 2s infinite ease 1.5s;
}

.spinner:after {
    width: 10.4px;
    height: 20.4px;
    background: #5469d4;
    border-radius: 0 10.2px 10.2px 0;
    top: -0.1px;
    left: 10.2px;
    transform-origin: 0px 10.2px;
    animation: loading 2s infinite ease;
}

.hidden {
    display: none;
}

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

@media only screen and (max-width: 600px) {
    #payment-form {
        width: 80vw;
        min-width: initial;
    }
}

/* Auth Modal Styles */
.auth-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.auth-tab {
    padding: 10px 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    color: #666;
}

.auth-tab.active {
    color: #000;
    border-bottom: 2px solid #000;
}

.auth-content {
    padding: 20px 0;
}

.auth-button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background-color: #000;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth-button.google {
    background-color: white;
    border: 1px solid #ddd;
    color: #000;
}

.auth-button.google img {
    width: 20px;
    height: 20px;
}

.auth-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #ddd;
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-divider span {
    background-color: white;
    padding: 0 10px;
    color: #666;
}

.auth-error {
    color: #ff4444;
    margin-top: 10px;
    text-align: center;
    display: none;
}

.summary-section {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
}

.summary-section h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.summary-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.modal-button {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.modal-button.primary {
    background-color: #000;
    color: white;
}

.modal-button.secondary {
    background-color: #f0f0f0;
    color: #000;
    border: 1px solid #ddd;
}

.summary-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

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

.summary-label {
    font-size: 13px;
}

/* Mobile Author Modal Styles */
#author-mobile-modal {
    display: none;
}

.author-mobile-content {
    max-width: 90%;
    width: 320px;
    padding: 20px;
    text-align: center;
}

.author-mobile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

#author-mobile-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#author-mobile-name {
    font-size: 1.2em;
    margin: 0;
    color: #333;
}

.author-mobile-details {
    margin: 15px 0;
}

#author-mobile-description {
    font-size: 0.9em;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.author-mobile-content h3 {
    font-size: 24px;
}

#author-mobile-ok {
    width: 100%;
    background-color: #000000;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

#author-mobile-ok:hover {
    background-color: #e5a1ac;
}

@media (min-width: 1024px) {
    .author-mobile-modal {
        display: none !important;
    }
}

@media (min-width: 769px) {
    #author-mobile-modal {
        display: none !important;
    }
    #hamburger-menu {
        display: none !important;
    }
    #mobile-menu-modal {
        display: none !important;
    }
    .menu-right > a, 
    .menu-right > button.talk-with-gemma {
        display: inline-flex !important;
    }
}

@media (max-width: 768px) {
    .menu-right > a, 
    .menu-right > button.talk-with-gemma {
        display: none;
    }
}

/* Mobile Menu Styles */
.hamburger-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    margin-left: 15px;
}

.hamburger-button span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.hamburger-button.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-button.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-button.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Modal */
.mobile-menu-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(10, 10, 10);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-modal.active {
    display: block;
    opacity: 1;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 25px;
    height: 100%;
}

.mobile-menu-logo {
    margin-bottom: 40px;
}

.mobile-menu-logo .logo {
    font-size: 30px;
    color: white;
}

.mobile-menu-logo .text {
    color: rgb(148 148 148);
    font-size: 14px;
    display: block;
}

.mobile-menu-item {
    color: white;
    padding: 15px 0;
    font-size: 18px;
    text-decoration: none;
    text-indent: 15px;
}

.mobile-menu-divider {
    width: 100%;
    height: 1px;
    background-color: #6c6c6c;
    margin: 5px 0;
}

.mobile-menu-close {
    color: white;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.mobile-menu-close:hover {
    transform: scale(1.1);
}

@media (min-width: 1024px) {
    .hamburger-button {
        display: none !important;
    }
    
    .mobile-menu-modal {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    /* Mobile menu styles */
    .menu-left .menu-links,
    .menu-right .menu {
        display: none;
    }
    
    .hamburger-button {
        display: flex;
    }
    
    .menu-right .text {
        display: none;
    }

    /* Common styles for all modals */
    .modal .modal-content,
    .modal .paczkomat-modal-content,
    .modal .order-history-modal-content {
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        max-width: 100% !important;
        max-height: 100% !important;
        border-radius: 0 !important;
        overflow-y: auto;
    }
}

/* Specific widths for floating-circle elements */
.floating-circle:nth-child(-n+3) {
    width: 26%;
}

.floating-circle:nth-child(4),
.floating-circle:nth-child(5) {
    width: 45%;
}

.floating-circle:nth-child(6) {
    width: 100%;
}

#record_video .form-group {
    width: 100%;
    margin: 0;
}

.code-container {
    width: 35%;
}

.code-container .form-group {
    width: 100%;
}

.form-buttons {
    gap: 1rem;
    justify-content: center;
}

.add-to-cart {
    background-color: rgb(8, 8, 8);
    color: white;
    border: 2px solid var(--primary-color);
    padding: 0px 20px;
    border-radius: 20px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    width: 400px;
    height: 45px;
    margin: 10px 0 0 0;
}

.add-to-cart:hover {
    background-color: #008cff;
    color: #ffffff;
}

#total_price_container .view-cart {
    background-color: rgb(0, 0, 0);
    color: #ffffff;
    padding: 0px 20px;
    border-radius: 20px;
    height: 45px;
    margin: 10px 0;
    width: 200px;
    font-size: 14px;
}

#total_price_container .view-cart:hover {
    background-color: #008cff;
    color: #ffffff;
}

.cart-modal {
    position: fixed;
    top: 0;
    right: -800px;
    width: 800px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 9999;
    overflow-y: auto;
    padding: 0;
    margin: 0;
}

.cart-modal.open {
    right: 0;
}

.cart-modal-header {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1;
}

.cart-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.cart-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    padding: 0.5rem;
    line-height: 1;
}

.cart-close:hover {
    color: var(--primary-color);
}

.cart-items {
    padding: 1rem;
}

.cart-item {
    display: flex;
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    align-items: start;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    object-position: center;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-details h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.cart-item-addons {
    font-size: 0.9rem;
    color: #666;
}

.cart-item-details,
.cart-item-prices,
.cart-item-delivery {
    width: 25%;
}

.cart-item h4 {
    padding-bottom: 10px;
} 

.extra-item {
    padding: 0.25rem 0.5rem;
    background: #f5f5f5;
    border-radius: 4px;
    color: #666;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.extra-item:hover {
    background: #e5e5e5;
}

.extra-tooltip {
    position: absolute;
    display: none;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    max-width: 250px;
    z-index: 10000;
}

.tooltip-letter textarea {
    width: 100%;
    height: 150px;
    resize: none;
    padding: 0.5rem;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #f9f9f9;
    font-size: 0.9rem;
    line-height: 1.4;
}

.tooltip-video {
    width: 100%;
}

.tooltip-video video {
    width: 100%;
    border-radius: 4px;
}

.tooltip-link input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #f9f9f9;
    font-size: 0.9rem;
}

.cart-item-extras {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.cart-item-extras span {
    padding: 0.25rem 0.5rem;
    background: #f5f5f5;
    border-radius: 4px;
    color: #666;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-actions button {
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cart-item-actions button:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.empty-cart {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-style: italic;
}

/* Overlay for cart modal */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-summary {
    padding: 20px;
}

.cart-total {
    margin: 0 0 10px 0;
}

.talk-with-gemma {
    padding: 10px 40px;
    color: #fff;
    border-radius: 20px;
    background: -webkit-linear-gradient(
        225deg,
        rgb(251, 175, 21),
        rgb(251, 21, 242),
        rgb(21, 198, 251)
      )
      0% 0% / 300% 300%;
      background-size: 200% 200%;
  }

.talk-with-gemma:hover {
    animation: gradientMover 3s ease infinite;
}

.cart-discount-section {
    padding: 10px 0;
}

#cart_discount_code {
    outline: 1px solid black;
    padding: 10px 20px;
    border-radius: 10px;
}

#cart_apply_discount {
    background: black;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
}

article {
    margin: 30px 0;
}

.flower-shop {
    background: white;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flower-shop:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.flower-shop h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

.flower-shop p {
    color: #666;
    font-size: 14px;
    margin: 5px 0;
}

.flower-shop .rating {
    font-weight: 500;
    margin-top: 10px;
}

.nearby-cities a:hover {
    color: #e5a1ac;
}

.faq-section {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
}

.faq-section h3 {
    color: #333;
    margin-bottom: 20px;
}

.faq-section p {
    color: #333;
    margin-bottom: 15px;
}

.quantity-display {
    font-size: 11px;
    color: gray;
    font-weight: normal;
}

@media (max-width: 768px) {
    .quantity-display {
        font-size: 8px;
    }
}

@media (max-width: 768px) {
    .flower-shop-list {
        grid-template-columns: 1fr;
    }
    
    .section-short {
        padding: 0;
    }
    
    h1 {
        font-size: 28px !important;
    }
    
    h2 {
        font-size: 24px !important;
    }
}

@keyframes gradientMover {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .cart-modal {
        width: 100%;
        right: -100%;
    }
}

.social-media-icons-mobile {
    display: none;
}

@media (max-width: 1366px) {
    .menu-right .text {
        display: none;
    }
}

@media (max-width: 1024px) {

    #choose_buket_header {
        padding-top: 20px;
    }

    .buket_description {
 
        align-items: center;
        display: flex !important;
    }

    #topbar-inner {
        margin: 5px 0;
    }

    .menu .text {
        display: none;
    }

    .menu-right {
       
    }

    #hero-heading {
        justify-content: flex-end;
        padding-bottom: 35px;
    }

    #root-absolute h1 {
        font-size: 40px;
    }

    #root-absolute h2 {
        font-size: 30px;
    }

    .section {
        padding-left: 0px;
        padding-right: 0px;
    }

    .section-long {
        padding-left: 10px;
        padding-right: 10px;
    }

    .pad {
        padding: 20px;
    }

    .tpad {
        padding-top: 20px;
    }

    #choose_buket img.buket {
        width: 100%;
        padding: 10px 0;
        height: 250px;
        object-fit: cover;
    }

    #choose_addons img.buket {
        height: 240px;
        object-fit: cover;
        padding: 20px 0;
    }

    .buket_content {
        width: 98%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    .buket__name {
        font-size: 18px;
        font-weight: bold;
    }

    .w-1\/4,
    .w-1\/2 {
        width: 100%;
    }

    #write_letter .pad {
        padding: 20px 0;
    }

    .floating-circle {
        margin: 5px;
        width: 13% !important;
        max-width: 120px;
    }

    .floating-circle img {
        width: auto;
        height: auto;
    }

    .floating-circle span {
        font-size: 12px;
        display: none;
    }
    
    #see_letter {
        height: auto;
    }

    .notebook-textarea {
        height: 350px;
        top: 15px;
        padding: 10px 10px 0;
        font-size: 18px;
        border-right: 15px solid #ffffff;
        border-left: 15px solid #ffffff;
        border-radius: 25px;
    }

    .mb-20 {
        margin-bottom: 20px;
    }

    #authors-column-1 {
        order: 1;
    }

    #authors-column-2 {
        order: 3;
    }

    #authors-column-3 {
        order: 2;
    }

    .authors {
        justify-content: center;
        flex-direction: row;
        height: auto;
    }

    .authors-row {
        width: fit-content;
    }

    .p-20 {
        padding: 20px;
    }

    #record_video {
        margin-top: 25px;
        padding: 30px;
    }

    #video {
        height: auto;
    }

    #shipping-form {
        width: 100%;
    }

    #box-visualisation {
        width: 100%;
    }

    #box-visualisation img {
        width: 100%;
    }

    .code-container {
        width: 100%;
    }

    .cost-container {
        width: 100%;
        justify-content: space-between;
    }

    .cost-container > div {
        width: 47%;
    }

    #shipping-form .form-group {
        margin-right: 0;
        padding-right: 10px;
        width: 100%;
    }

    .form-group input {
        width: 100%;
    }

    #total_price_container {
        width: 100%;
    }

    #total_price, #items_price, #shipping_cost, #discount_sum {
        min-width: auto;
        width: 100%;
    }

    #footer .column {
        width: 50%;
        padding: 10px;
    }

    .social-media-icons {
        display: none;
    }

    .social-media-icons-mobile {
        display: flex;
        padding: 20px 0 0 0;
    }

    #main h2 {
        font-size: 24px;
    }

    #total_price, #items_price, #shipping_cost, #discount_sum {
        font-size: 15px;
    }


    #visualisation .buket_container {
        justify-content: flex-end !important;
        width: 30%;
        min-height: auto !important;
    }

    #visualisation img {
        max-width: 100%;
        height: 200px;
    }
    
    .code-container .form-group {
        display: block;
        margin: 0;
        width: 100%;
    }

    #payment .pad {
        padding: 20px 0;
    }

    .video-modal .modal-content {
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        position: relative !important;
        max-width: 100% !important;
        width: 100% !important;
        height: 100% !important;
        overflow: auto;
    }

    .video-container {
        width: 100%;
    }

}

.video-container {
    position: relative;
}

.video-wrapper {
    position: relative;
    width: fit-content;
    border-radius: 20px;
    overflow: hidden;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-button-overlay.with-video {
    opacity: 1;
}

.play-button-overlay.playing {
    opacity: 0;
}

.play-button-overlay.playing:hover {
    opacity: 1;
}

.play-button-overlay.hidden {
    display: none;
}

#playOverlayButton {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 24px;
    transition: transform 0.2s ease;
}

#playOverlayButton:hover {
    transform: scale(1.1);
}

#upload-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 10;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hidden {
    display: none !important;
}

.talk-with-gemma:disabled {
    background-color: #cccccc;
    opacity: 0.7;
    cursor: not-allowed;
}

#orders-modal {
    display: none;
}

.video-modal {
    display: none;
}

/* Video Modal Styles */
.video-modal .modal-content {
    margin: 20px auto;
    border: 1px solid #3a3a3a;
    border-radius: 10px;
    position: relative;
    max-width: 780px;
}

.video-modal .video-container {

}

.video-modal video {
    width: 100%;
    max-height: 300px;
    border-radius: 10px;
}

.video-modal .close {
    color: #000000;
    position: absolute;
    right: 30px;
    top: 10px;
    font-size: 38px;
    cursor: pointer;
}

.video-modal .letter-container {
    background: white;
}

.video-modal .notebook {
    width: 100%;
    height: 100%;
    max-height: 430px;
    background-color: white;
    background-image: linear-gradient(#e1e1e1 1px, transparent 1px);
    background-size: calc(100% - 80px) 35px;
    background-position: 40px 15px;
    line-height: 35px;
    padding-top: 50px;
    font-size: 17px;
    border-right: 20px solid #ffffff;
    border-left: 20px solid #ffffff;
    color: black;
    resize: none;
}

.external-link-button {

}

.external-link-button input {
    border: 1px solid lightgray;
    margin-right: 10px;
    border-radius: 15px;
    padding: 10px 15px;
    width: 100%;
    margin-bottom: 10px;
}

.video-modal .external-link-button a {
    display: block;
    transition: background-color 0.3s ease;
    background: black;
    color: white;
    padding: 10px 0;
    text-align: center;
    border-radius: 10px;
}

.video-modal .external-link-button:hover a {
    background-color: #333 !important;
}

/* Error Modal Styles */
.error-modal {
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-modal-content {
    background-color: #fefefe;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.error-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.error-header h3 {
    margin: 0;

    font-size: 1.2em;
}

.close-modal {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: #ff4444;
}

.error-body {
    padding: 10px 0;
    color: black;
}

.error-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.error-item {
    color: #666;
    font-size: 0.95em;
    padding: 8px 12px;
    background-color: #fff5f5;
    border-radius: 5px;
    border-left: 3px solid #ff4444;
}

.error-modal.fade-out {
    animation: modalFadeOut 0.3s ease-out forwards;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Success variant */
.error-modal.success-modal .error-header h3 {
    color: #000000;
}

.error-modal.success-modal .success-message {
    color: #000000;
    text-align: center;
    padding: 10px;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .error-modal-content {
        width: 95%;
        margin: 20px;
    }
}

.visualization-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    padding: 20px;
}

.visualization-container .buket_container {
    width: 200px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0;
}

.visualization-container img {

}

.visualization-container .buket_content {
    padding: 10px;
    margin-top: 10px;
    background: white;
    border-radius: 10px;
}

.visualization-container .buket__name {
    font-size: 16px;
    margin-bottom: 5px;
}

.visualization-container .buket_price {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {

    .visualization-container .buket_container {
        width: 30%;
        min-height: auto;
    }

    .visualization-container .buket__name {
        font-size: 14px;
    }
    
    .visualization-container .buket_price {
        font-size: 12px;
    }

    .visualization-container {
        gap: 5px;
        padding: 0px;
    }

    #mobile-topbar-login {
        color: #ffffff;
        font-size: 13px;
        cursor: pointer;
        padding: 5px 15px;
        border: 1px solid #3d3d3d;
        border-radius: 15px;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    #mobile-topbar-login:hover {
        background: #fffefb;
        color: #000000;
    }

    #footer .section-short {
        padding: 0;
    }
}

#login-form .form-group,
#register-form .form-group {
    width: 95%;
}

#login-form .form-group input,
#register-form .form-group input {
    border: 1px solid lightgray;
}



/* Orders Modal Styles */
#orders-modal .paczkomat-modal-content {
    overflow-y: auto;
    max-height: 90vh;
    padding: 20px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.order-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.1em;
}

.order-status {
    color: #666;
    font-size: 0.9em;
}

.order-amount {
    text-align: right;
}

.order-amount .discount {
    display: block;
    color: #e44d26;
    font-size: 0.9em;
    margin-top: 5px;
}

.order-items {
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

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

.item-name {
    font-size: 0.95em;
}

.item-price {
    font-weight: 500;
}

.order-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.delivery-info h4,
.recipient-info h4 {
    margin: 0 0 10px 0;
    font-size: 1em;
    color: #333;
}

.delivery-info p,
.recipient-info p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #666;
}

.delivery-info a {
    color: #007bff;
    text-decoration: none;
}

.delivery-info a:hover {
    text-decoration: underline;
}

.order-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.view-letter,
.download-invoice {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.2s;
}

.view-letter {
    background-color: #f8f9fa;
    color: #333;
}

.download-invoice {
    background-color: #e9ecef;
    color: #333;
}

.view-letter:hover,
.download-invoice:hover {
    background-color: #e2e6ea;
}

@media (max-width: 768px) {
    .order-header {
        flex-direction: column;
    }
    
    .order-amount {
        text-align: left;
        margin-top: 10px;
    }
    
    .order-details {
        grid-template-columns: 1fr;
    }
    
    .order-actions {
        flex-direction: column;
    }
    
    .view-letter,
    .download-invoice {
        width: 100%;
    }
}

.order-history-modal-content {
    width: 100%;
    height: 100%;
    background-color: #fff;
    margin: 50px auto;
    padding: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    max-width: 80%;
    overflow-y: auto;
    max-height: 90vh;
    border-radius: 20px;
}

/* Orders Modal Tabs */
.orders-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e2e6ea;
}

.orders-tab {
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
}

.orders-tab:hover {
    color: #333;
    background-color: #f8f9fa;
}

.orders-tab.active {
    color: #0000FF;
    border-bottom-color: #0000FF;
    font-weight: 600;
}

.orders-tab-content {
    display: none;
}

.orders-tab-content.active {
    display: block;
}

/* Calendar Styles */
.calendar-container {
    display: flex;
    gap: 30px;
    min-height: 400px;
}

.calendar-column {
    flex: 1;
    padding: 20px;
}

.calendar-left {
    border-right: 1px solid #e2e6ea;
}

.calendar-column h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.calendar-subtitle {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.calendar-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calendar-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calendar-form label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.calendar-form input[type="text"],
.calendar-form input[type="date"] {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.calendar-form input[type="text"]:focus,
.calendar-form input[type="date"]:focus {
    outline: none;
    border-color: #fed8e0;
}

.add-event-button {
    padding: 12px 24px;
    background-color: #0000FF;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.add-event-button:hover {
    background-color: #0000CC;
}

.calendar-info-text {
    margin-top: 15px;
    font-size: 13px;
    color: #666;
    text-align: center;
    line-height: 1.5;
}

.events-list {
    max-height: 500px;
    overflow-y: auto;
}

.event-item {
    padding: 15px;
    margin-bottom: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #fed8e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-item-info {
    flex: 1;
}

.event-item-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.event-item-date {
    font-size: 13px;
    color: #666;
}

.event-item-actions {
    display: flex;
    gap: 10px;
}

.event-delete-btn {
    padding: 6px 12px;
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.event-delete-btn:hover {
    background-color: #ee5a5a;
}

@media (max-width: 768px) {
    .calendar-container {
        flex-direction: column;
    }
    
    .calendar-left {
        border-right: none;
        border-bottom: 1px solid #e2e6ea;
    }
}

.order-history-header {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
    font-weight: 500;
    color: #333;
    align-items: center;
    border: 1px solid #eee;
    border-bottom: none;
}

.order-history-header > div {
    font-size: 0.9em;
    text-align: left;
    padding: 0 10px;
}

.order-card {
    font-size: 14px;
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
    border: 1px solid #eee;
    margin-bottom: -1px;
    background-color: #fff;
}

.order-card:last-child {
    border-radius: 0 0 8px 8px;
}

.order-card > div {
    padding: 0 10px;
}

.order-delivery-date {
    grid-column: 1;
}

.order-image {
    grid-column: 2;
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.order-costs {
    grid-column: 3;
    min-width: 400px;
    justify-content: space-between;
}

.order-delivery-info {
    grid-column: 4;
}

.order-letter {
    grid-column: 5;
}

.order-postcard {
    grid-column: 6;
}

.order-tracking {
    grid-column: 7;
}

.order-invoice {
    grid-column: 8;
}

.view-letter,
.download-invoice {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85em;
    transition: background-color 0.2s;
    background-color: #f8f9fa;
    color: #333;
    width: 100%;
    max-width: 120px;
}

.view-letter:hover,
.download-invoice:hover {
    background-color: #e2e6ea;
}

.tracking-link {
    color: #007bff;
    text-decoration: none;
}

.tracking-link:hover {
    text-decoration: underline;
}

.order-image {
    width: 60px;
    object-fit: cover;
}

.postcard-thumb {
    height: 60px;
    width: auto;
    border-radius: 4px;
    border: 1px solid #eee;
}

@media (max-width: 768px) {

    .order-history-header {
        display: none;
    }

    #orders-content {
        display: flex;
        overflow-x: scroll;
    }

    .order-card {
        grid-template-columns: 1fr;
        gap: 10px;
        flex-wrap: wrap;
        display: flex;
        width: 50%;
        margin-right: 15px;
        border-radius: 10px;
    }

    .order-image {
        width: 300px;
        height: 300px;
    }

    .unit-price {
        margin-bottom: 10px;
    }

    .order-costs {
        flex-direction: column;
    }

    .order-delivery-date,
    .order-image,
    .order-costs,
    .order-delivery-info,
    .order-letter,
    .order-postcard,
    .order-tracking,
    .order-invoice {
        grid-column: 1;
    }
}

#footer .logo.flex span {
    font-family: "Segoe UI", sans-serif;
}

.flex-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
}

.flower-column {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flower-image {
    max-width: 100%;
    height: auto;
    opacity: 0.8;
}

#invitation-content {
    flex: 1;
    min-width: 0; /* Prevents flex item from overflowing */
    background-color: #fff;
    background-image: linear-gradient(#e1e1e1 1px, transparent 1px);
    background-size: calc(100% - 80px) 55px;
    background-position: 40px 55px;
    line-height: 55px;
    padding: 55px 40px 0;
    font-size: 24px;
    border-right: 50px solid #ffffff;
    border-left: 50px solid #ffffff;
    border-radius: 5px;
    box-shadow: 0 2px 8px #0000001a;
    color: #000;
    overflow-y: scroll;
    height: 90vh;
}

@media (max-width: 1200px) {
    .flex-container {
        gap: 10px;
    }

    .flower-column {
        flex: 0 0 150px;
    }
}

@media (max-width: 768px) {
    .flex-container {
        flex-direction: column;
    }

    .flower-column {
        flex: 0 0 100px;
    }

    #invitation-content {
        width: 100%;
        font-size: 20px;
        border-right: 0 solid #ffffff;
        border-left: 0 solid #ffffff;
    }
}

.go-to-homepage {
    transition: all 0.3s ease;
}

.go-to-homepage:hover {
    background: #e1e1e1 !important;
    color: #000000 !important;
}

@media (max-width: 768px) {
    .go-to-homepage {
        display: none;
    }
    
    #mobile-topbar-login {
        display: inline-flex !important;
        color: white;
        text-decoration: none;
        align-items: center;
    }
    
    #mobile-topbar-login span {
        white-space: nowrap;
    }
    
    .mobile-buttons {
        display: flex;
        align-items: center;
    }

    .mobile-menu-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    #mobile-topbar-login span:last-child {
        display: none;
    }
}

/* Start Generation Here */
@media (min-width: 1024px) and (max-width: 2000px) {
    .section-long {
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* End Generation Here */

.delete-video-button {
    background-color: #ff4444;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.delete-video-button:hover {
    background-color: #ff0000;
}

.buket_container.vase,
.buket_container.special-addon {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buket_button:disabled {
    background-color: #ccc !important;
    color: #666 !important;
    border: none !important;
    cursor: not-allowed !important;
}

.buket__name {
    transition: color 0.3s ease;
}

.buket_container:has(.buket_button:disabled) .buket__name {
    color: #666;
}

/* Contact Modal Styles */
#contact-info-modal {
    display: none;
}

.contact-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px 0;
}

.contact-info-section h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.contact-info-section p {
    color: #666;
    line-height: 1.6;
}

.contact-info-section a {
    color: #008cff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-section a:hover {
    color: #0056b3;
}

.created-by {
    grid-column: 1 / -1;
    padding-bottom: 20px;
    color: #333;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.created-by .logo {
    font-size: 24px;
}

.created-by .logo.flex {
    display: inline-flex;
}

.created-by .logo.flex span {
    font-family: "Segoe UI", sans-serif;
}

.created-by .logo.flex span:first-child {
    font-weight: bold;
}

@media (max-width: 768px) {
    .contact-info-content {
        grid-template-columns: 1fr;
        padding: 20px 0;
    }
    
    .contact-info-section {
        padding: 0;
    }
    
    .created-by {
        padding-bottom: 15px;
        font-size: 16px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .created-by .logo {
        font-size: 27px;
    }

    .contact-info-section .talk-with-gemma {
        width: 100%;
        margin-top: 15px;
    }
}

.contact-info-section .talk-with-gemma {
    width: 100%;
    font-size: 15px;
    border: none;
    cursor: pointer;
    padding: 10px 25px;
    line-height: normal;
}

.modal-footer {
    background: #000;
    padding: 15px 20px;
    margin: 40px -20px -20px -20px;
}

.modal-footer .created-by {
    color: #fff;
    padding: 0;
    justify-content: space-between;
}

.modal-footer .logo {
    color: #fff;
}

.modal-footer .logo.flex {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.modal-footer .logo.flex span {
    color: #fff;
}

@media (max-width: 768px) {
    .modal-footer {
        padding: 10px 20px;
        margin: 20px -20px -20px -20px;
        position: absolute;
        width: 100%;
        bottom: 20px;
    }

    .modal-footer .created-by {
        justify-content: space-between;
    }

    .paczkomat-modal-content {
        padding: 20px 0 0 0 !important;
    }

}

.character-counter {
    text-align: right;
    color: #666;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.selection-group {

}

.selection-group#choose_vases {
    width: 80%;
}

#choose_vases .buket_container {
    width: 25%;
}

.selection-group#choose_specials {
    width: 20%;
}

#choose_specials .buket_container {
    width: 100%;
}

.buket_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {

    #choose_buket .buket_container {
        width: 50%;
    }


    /* End of Selection */

    .selection-group#choose_vases {
        width: 100%;
        flex-wrap: wrap;
    }

    #choose_vases .buket_container {
        width: 50%;
    }

    .selection-group#choose_specials {
        width: 100%;
    }

    #choose_specials .buket_container {
        width: 100%;
    }
}

/* Bouquet Options Styles */
.buket_options {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 12px;
    width: 100%;
}

.buket_option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

@media (max-width: 768px) {
    .buket_option {
        padding: 0;
    }
}

.buket_option:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.buket_option:has(.buket_radio:disabled) {
    opacity: 0.6;
    cursor: not-allowed;
}

.buket_option:has(.buket_radio:disabled):hover {
    background-color: transparent;
}

.buket_radio {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #e4c997;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.buket_radio:checked {
    background-color: white;
    border-color: pink;
}

.buket_radio:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #333;
}

.buket_radio:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    border-color: #ccc;
}

.buket_option_soldout {
    font-size: 12px;
    color: #ff4444;
    user-select: none;
    font-weight: 600;
    margin-left: 8px;
}

.buket_option_label {
    font-size: 14px;
    color: #333;
    user-select: none;
    flex: 1;
}

.buket_option_price {
    font-size: 14px;
    color: #333;
    user-select: none;
    font-weight: 500;
    margin-left: auto;
}

.buket_play_button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    padding: 0;
}

.buket_play_button.show {
    display: flex;
}

.buket_play_button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.buket_play_button:active {
    transform: scale(0.95);
}

.buket_play_button svg {
    width: 24px;
    height: 24px;
}

.buket_video_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: -100px;
    justify-content: center;
    display: flex;
}

.buket_video_placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.buket_video_placeholder.hidden {
    opacity: 0;
    pointer-events: none;
}

.buket_video {
    height: 450px;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 16px;
    object-fit: contain;

@media (max-width: 768px) {
    .buket_video {
        height: 320px;
    }
}

/* Consistent Modal Styles for All Modals */
#producers-modal .modal-content,
#about-modal .modal-content,
#subscription-modal .modal-content {
    background-color: #fefefe;
    margin: 50px auto;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
}

#producers-modal .modal-content,
#about-modal .modal-content,
#subscription-modal .modal-content {
    max-width: 1200px;
    margin: 30px auto;
}

#producers-modal #producers-content,
#about-modal #about-content,
#subscription-modal #subscription-content {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
    #producers-modal .modal-content,
    #about-modal .modal-content,
    #subscription-modal .modal-content {
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        max-width: 100% !important;
        max-height: 100% !important;
        border-radius: 0 !important;
        overflow-y: auto;
    }
}

/* Modal Section Styles */
.modal-section {
    margin: 10px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
}

.modal-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.modal-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Modal Header Styles */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5em;
    color: #333;
}

/* Modal Footer Styles */
.modal-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: right;
}

