/* Professional CSS with Custom Colors */

/* Ribbon Style */
.sxc-ribbon {
    position: relative;
    margin-left: -30px;
    padding: 15px;
    background-color: #704dd6; /* Primary Blue */
    color: #FFF9F3; /* Soft White */
    border-radius: 0 5px 5px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 600;
    line-height: 1.5;
}
.sxc-ribbon::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px;
    border-color: transparent #EBE1FF #EBE1FF transparent;
}

/* Map Containers */
.acc-map, .acc-logsmap, .acc-progress {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #FFFEE2; /* Soft Yellow Background */
}
.acc-map {
    height: 440px;
}
.acc-logsmap {
    height: 300px;
}
.acc-progress {
    height: 350px;
}

/* SMS Body */
.acc-smsbody {
    width: 100%;
    height: 300px;
    word-wrap: break-word;
    background-color: #D7FFF0; /* Soft Green */
    color: #000;
}

/* Icons & Buttons */
.acc-spinner {
    font-size: 40px;
}
.acc-iconStyle {
    font-size: 18px;
    padding: 12px;
    border-radius: 50%;
    background: #2C303B;
    color: #FFF9F3;
}
.acc-active {
    color: #704dd6; /* Primary Blue */
}
.acc-border-10 {
    border: 10px solid #C9DEFF; /* Light Blue */
}
.acc-mt-8 {
    margin-top: 8px;
}
.acc-p-15 {
    padding: 1.5rem !important;
}
.acc-color {
    color: #000 !important;
}
.acc-btn-reset {
    margin: 15px 0;
    border: none;
}
.btn-light {
    border-color: #BABFC7;
}
.acc-logsbadege {
    border-color: #FFCCCB !important;
    background-color: #FFCCCB !important;
    color: #FFF9F3;
}

/* Pagination */
.page-item:last-child a {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}
.page-item a:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.page-item a {
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #704dd6; /* Primary Blue */
    background-color: #FFF9F3; /* Soft White */
    border: 1px solid #BABFC7;
}
/* Audio Player */
#audioPlayer {
    height: 25px !important;
}

/* Image Hover Effect */
.image-container {
    position: relative;
    display: inline-block;
}
.image-container .after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 233, 228, 0.8); /* Light Peach */
    display: none;
}
.image-container:hover .after {
    display: block;
}
.image-container:hover .edit {
    display: block;
}
.image-container p {
    display: table;
    margin: auto;
}
