:root {
    --primary-color: #1b73d8;
    --header-second-color: #CDD0D5;
    --yellow-color: #ffb300;
    --font-family-regular: 'Open Sans Regular';
    --font-family-bold: 'Open Sans Bold';
    --font-family-italic: 'Open Sans Italic';
    --white-color: #fff;
    --black-color: #374151;
    --footer-color: #a6a7ab;
    --light-primary-color: #d1e3f7;
}


.roundImageLeft {
    max-width: 60%;
    height: auto;
    position: absolute;
    top: -7%;
    left: -15%;
    z-index: -1;
}

.roundImage {
    max-width: 60%;
    height: auto;
    position: absolute;
    top: -10%;
    right: -15%;
    z-index: -1;
}

.col-half-left {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
    /* Align the content to the right */
    align-items: center;
    /* Vertically center the content */
}

.col-half-right {
    flex: 0 0 50%;
    max-width: 50%;
}

.app-detail-box {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
}

.app-detail-box-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.app-detail-box-header img {
    width: 90px;
    height: 90px;
    margin-right: 10px;
}

.app-detail-box-header-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-detail-box-header-detail-title {
    font-family: var(--font-family-bold);
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.app-detail-box-header-detail-rating {
    color: #ffc107;
    font-size: 1rem;
}

.app-detail-box-header-detail-rating-empty {
    font-size: 1rem;
}

.app-detail-box-header-detail-rating-count {
    color: #6b7280;
    font-size: 0.9rem;
    margin-right: 5px;
    font-weight: bold;
}

.app-desc-text {
    text-align: left;
    /* Default for desktop */
    font-family: var(--font-family-regular);
    margin-top: 0.5rem !important;
    color: #6b7280;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.67;
    letter-spacing: 1px;
}

.app-info-action {
    display: flex;
    align-items: flex-end;
}

.border-button {
    padding: 10px 24px;
    border: 1px solid #a6a7ab;
    /* Change color as needed */
    border-radius: 26px;
    /* Controls the roundness */
    background-color: transparent;
    /* Optional */
    color: #000;
    font-size: 14px;
    font-family: var(--font-family-bold);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 20px;

}

.border-button:hover {
    background-color: #007bff;
    color: #fff;
}

.app-play-button {
    padding: 0 !important;
    text-align: left !important;
    border: none;
    background: none;
    margin-left: 20px;
}

/* Dotted line and icon styles */

.icon-left,
.icon-right {
    width: 40px;
    height: 65px;
}

.download-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

}

.download-box-count {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.download-box-count-text-value {
    font-size: 1rem;
    font-weight: bold;
    color: #1C71D8;
}

.download-box-count-text-label {
    font-size: 1rem;
    font-weight: bold;
    color: #374151;
}

/* App Detail page */
.detail-page-app-desc-text {
    text-align: left;
    font-size: 1.3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .app-detail-box-header img {
        width: 70px;
        height: 70px;
    }

    .app-info-action {
        flex-direction: column;
        align-items: center;
        /* optional for horizontal centering */
        text-align: center;
        /* optional, for centering text and buttons */
    }

    .app-info-action>* {
        margin-bottom: 16px;
        /* space between items */
    }

    /* Optional: remove bottom margin from last item */
    .app-info-action>*:last-child {
        margin-bottom: 0;
    }

}

@media (max-width: 600px) {
    .app-detail-box {
        margin-top: 10px;
        text-align: left;
    }

    .app-detail-box-header {
        justify-content: center; /* Align items to the left */
    }

    .app-detail-box-header img {
        width: 50px;
        height: 50px;
    }

    .col-half-left {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center !important;
        align-items: center !important;
    }

    .col-half-right {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center !important;
        align-items: center !important;
    }

    .app-detail-box-header-detail-title {
        font-size: 1.2rem;
    }

    .app-desc-text {
        text-align: center;
        /* Default for desktop */
    }
    /* App Detail page */
.detail-page-app-desc-text {
    margin-top: 10px;
    text-align: center;
    font-size: 1.2rem;
}
}