/* Custom Buttons and Top Bar Styles */

/* Top Bar Container */
.custom-top-bar {
    background-color: #f7f7f7;
    border-bottom: 1px solid #e2e2e2;
    padding: 8px 0;
    width: 100%;
}

.custom-top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Base Button Styles */
.et_pb_button_custom {
    display: inline-block;
    padding: 10px 24px !important;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: none !important;
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif !important;
}

/* Button 1 (Turquoise) */
.et_pb_button_0_custom {
    color: #2ec4b6 !important;
    background-color: #ffffff !important;
}

.et_pb_button_0_custom:hover {
    background-color: #2ec4b6 !important;
    color: #ffffff !important;
}

/* Button 2 (Orange) */
.et_pb_button_1_custom {
    color: #ff9f1c !important;
    background-color: #ffffff !important;
}

.et_pb_button_1_custom:hover {
    background-color: #ff9f1c !important;
    color: #ffffff !important;
}

/* Responsive adjustments */
@media (max-width: 980px) {
    .custom-top-bar .container {
        justify-content: center;
        padding: 0 15px;
    }
    .et_pb_button_custom {
        padding: 8px 16px !important;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .custom-top-bar .container {
        flex-direction: column;
        gap: 8px;
    }
    .et_pb_button_custom {
        width: 100%;
        text-align: center;
    }
}

/* Specific wrappers for index.html placeholders */
.et_pb_button_0_wrapper .et_pb_button_0_custom,
.et_pb_button_1_wrapper .et_pb_button_1_custom {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
