
/* Frontend Success Screen Calendar Buttons - Version 2.4 */

/* Root container adjustment */
.bookmify_fe_app .bookmify_fe_success .success_in {
    padding: 40px 30px 30px 30px !important;
}

/* Fix for the "Success Content" spacing (the text above the title) */
.bookmify_fe_app .bookmify_fe_success .success_content {
    margin-top: 30px !important;
    margin-bottom: 0 !important;
}

/* The Title positioning - now outside the wrap */
.bookmify_fe_app .bookmify_calendar_title {
    margin: 30px 0 5px 0 !important; /* Large gap above, small gap below */
    font-size: 18px !important;
    color: #0078D4 !important;
    font-family: 'Bookman', sans-serif !important;
    font-weight: 400 !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}

/* The Wrap container - only for the buttons now */
.bookmify_fe_app .bookmify_fe_calendar_wrap {
    margin-top: 5px !important; /* Closer to the title */
    padding: 15px !important;
    background: #ffffff !important;
    border: 1px solid #e1e4e8 !important;
    border-radius: 10px !important;
    width: 100% !important;
    float: left !important;
    clear: both !important;
    box-sizing: border-box !important;
    text-align: center !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

.bookmify_fe_app .bookmify_fe_calendar_btns {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    justify-content: center !important;
}

.bookmify_fe_app .calendar_btn {
    flex: 1 1 calc(33.333% - 10px) !important;
    min-width: 110px !important;
    padding: 12px 10px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    border: none !important;
}

.bookmify_fe_app .calendar_btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2) !important;
    filter: brightness(1.1) !important;
}

/* Colors */
.bookmify_fe_app .calendar_btn.google { background-color: #f44242 !important; }
.bookmify_fe_app .calendar_btn.outlook { background-color: #0078D4 !important; }
.bookmify_fe_app .calendar_btn.apple { background-color: #000000 !important; }

/* ICS Subtle Link */
.bookmify_fe_app .calendar_btn.ics { 
    flex: 1 1 100% !important; 
    background-color: transparent !important;
    color: #6c757d !important;
    margin-top: 12px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    border: 1px dashed #ccc !important;
    box-shadow: none !important;
}

.bookmify_fe_app .calendar_btn.ics:hover {
    background-color: #f8f9fa !important;
    border-color: #999 !important;
    transform: none !important;
}

/* Responsive Overrides */
@media (max-width: 600px) {
    .bookmify_fe_app .bookmify_fe_success .success_in {
        padding: 30px 15px 20px 15px !important;
    }
    .bookmify_fe_app .calendar_btn {
        flex: 1 1 100% !important;
        padding: 14px !important;
    }
}
