/* 
   Button Alignment Fix for Services 1 and 6
   This CSS specifically targets the alignment issue with the + buttons
   in the Email Automation and Timesheet System service items
*/

/* Ensure consistent positioning for all toggle buttons */
.service-header {
    position: relative !important;
}

.service-header .toggle-btn {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    border: none !important;
    font-size: 1.5rem !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Specific fix for gold-colored service items (1 and 6) */
.service-item[data-color="gold"] .service-header .toggle-btn {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}
