.change-pass-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid #cccccc;
    border-radius: 5px;
}
.customer-info-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid #cccccc;
    border-radius: 5px;
}
#account-account h1 {
    color: #30363D;
    font-weight: 700;
    line-height: 33px;
    position: relative;
    margin: 0 0 30px 0;
}

h2.text-change-pass {
    margin-top: 30px;
}
.customer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    font-size: 16px;
    margin-bottom: 15px;
}
.info-item {
    display: flex;
    flex-direction: column;
    font-weight: bold;
}
.label {
    font-weight: bold;
}
.value {
    font-weight: normal;
}
.us-acc-edit-form {
    display: none;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 20px;
    margin-top: 15px;
}
input.us-acc-edit-inputs {
    padding: 8px;
    border: 1px solid #cccccc;
    border-radius: 5px;
}
.acc-info-buttons-wrapper {
    width: 100%;
}
button.us-acc-btns {
    padding: 12px 20px;
    cursor: pointer;
    border: 1px solid #cccccc;
    border-radius: 5px;
}
button.us-acc-btns i {
    margin-right: 8px;
}
button.us-acc-btns svg {
    vertical-align: bottom;
}
@media (max-width: 768px) {
    .customer-info {
        flex-direction: column;
        gap: 15px;
    }
    .us-acc-edit-form {
        flex-direction: column;
    }
}
#customer-info-message {
    width: 100%;
    border-radius: 5px;
}
#customer-info-message ul {
    margin-left: 50px;
}

.password-change {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.password-fields {
    display: flex;
    gap: 20px;
    width: 100%;
}
.input-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.password-change label {
    font-weight: bold;
    margin-bottom: 5px;
}
.password-change input {
    font-size: 14px;
    width: 100%;
    padding: 8px;
    border: 1px solid #cccccc;
    border-radius: 5px;
}
.password-change button {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    align-self: flex-start;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .password-fields {
        flex-direction: column;
    }
}

#password-message {
    width: 100%;
    border-radius: 5px;
}
#password-message ul {
    margin-left: 50px;
}

.order-container {
    width: 100%;
    margin: 25px auto;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    position: relative;
    background: #fff;
}

.order-status-date {
    display: flex;
    flex-direction: column;
}

.status-line {
    display: flex;
    gap: 8px;
}

.acc-status-order {
    background: #01c070;
    padding: 0 5px;
    border-radius: 5px;
    color: #ffffff;
    font-weight: 400;
}

.acc-status-ticket {
    background: #01c070;
    padding: 0 5px;
    border-radius: 5px;
    color: #ffffff;
    font-weight: 400;
    margin-left: 10px;
}

.order-number {
    font-weight: bold;
    color: #666;
    margin-top: 4px;
}

.order-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.product-count {
    font-size: 14px;
    color: #444;
}

.toggle-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.toggle-arrow svg {
    vertical-align: bottom;
}

.order-body {
    display: none;
    padding: 16px;
    background: #fff;
}

.order-body.open {
    display: flex;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
}

.order-left, .order-right {
    flex: 1;
    min-width: 280px;
}

.order-row {
    display: flex;
    margin: 6px 0;
}
.order-row label {
    width: 55%!important;
}

.order-row-data {
    font-weight: 600;
}

.product-item {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
.product-item-top {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.product-thumb img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    max-width: 80px;
}

.product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-name {
    font-weight: bold;
    margin-bottom: 6px;
    text-transform: uppercase;
    line-height: 1.2;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
    padding-left: 72px;
}

.product-meta .service-link {
    color: #000000;
}

.product-meta .service-link:hover {
    text-decoration: none;
}
.product-item ul {
    padding-left: 90px;
}
.product-item ul li {
    font-size: 14px;
    color: #555;
}

.product-pricing {
    min-width: 90px;
    text-align: right;
    font-size: 14px;
}

.product-pricing .price-line {
    line-height: 1.2;
}

.total-line {
    font-weight: bold;
}

.total-price {
    margin-top: 12px;
    font-weight: bold;
}

.rotated {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .order-body.open {
        flex-direction: column;
    }

    .order-left, .order-right {
        width: 100%;
    }
}

.acc-builds-quantity {
    width: 100%;
}
.acc-build-block {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 16px;
    width: 100%;
    margin: 12px auto;
}
.acc-build-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
}
.acc-build-actions {
    display: flex;
    gap: 10px;
}
.acc-build-actions button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.acc-product-slider-container {
    position: relative;
    overflow: hidden;
    margin: 20px 0;
    border-radius: 5px;
}
.acc-product-slider {
    display: flex;
    overflow-x: hidden;
    gap: 12px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.acc-product-card {
    position: relative;
    width: 180px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    flex-shrink: 0;
    box-sizing: border-box;
}
.acc-product-category {
    font-weight: bold;
    margin-bottom: 20px;
}
.acc-product-name a {
    text-decoration: none;
    color: #000000;
}
.acc-product-name a:hover {
    text-decoration: underline;
}
.acc-product-card img {
    width: 100%;
    height: auto;
    margin-top: 10px;
    border-radius: 5px;
}
.acc-total-price {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}
.acc-order-product-price-return {
    color: #d51034;
}
.acc-order-product-return {
    opacity: 0.3;
}
.acc-action-buttons {
    display: flex;
    gap: 10px;
}
.acc-action-buttons button {
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
}
.acc-action-buttons button svg {
    vertical-align: bottom;
}
.acc-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 18px;
    z-index: 10;
}
.acc-slider-nav.left {
    left: 0;
}
.acc-slider-nav.right {
    right: 0;
}
.acc-slider-nav:hover, .acc-slider-nav:focus, .acc-slider-nav:active {
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
}
.acc-slider-nav.hidden {
    display: none;
}
.acc-slider-nav svg {
    vertical-align: bottom;
    margin: 8px 3px;
}
.acc-add-build-to-cart {
    background-color: #01c070;
    border-color: #01c070;
    color: #ffffff;
}
.acc-add-build-to-cart:hover {
    background-color: #00bc52;
    border-color: #00bc52;
}
/*.acc-add-build-to-cart:focus {
    background-color: #01c070;
    color: #ffffff;
}*/
.acc-upgrade-build {
    background-color: #23459B;
    border-color: #23459B;
    color: #ffffff;
}
.acc-upgrade-build:hover {
    background-color: #1f55dd;
    border-color: #1f55dd;
}
.acc-copy-tooltip {
    position: absolute;
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s, transform 0.2s;
}

.acc-copy-tooltip.show {
    opacity: 1;
    transform: translateY(-20px);
}

.acc-card-out-of-stock {
    opacity: 0.3;
    border-color: red;
}
.not-available-notification {
    color: red;
    margin-left: 15px;
}

.acc-product-wrapper {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 25px;
    overflow: hidden;
}
#acc-products-list .pagination {
    margin: 25px 0;
    justify-content: flex-start;
}

#acc-order-list .pagination {
    margin: 25px 0;
    justify-content: flex-start;
}

#acc-order-list .text-right {
    margin: 25px 0;
}

#acc-products-list .text-right {
    margin: 25px 0;
}

.acc-product-row {
    display: grid;
    grid-template-columns: 100px 1fr 120px 160px;
    align-items: center;
    gap: 16px;
    padding: 10px;
}

.acc-product-title {
    text-transform: uppercase;
    font-weight: bold;
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 0;
}
.acc-product-sku {
    margin-top: 15px;
}
.acc-product-price {
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}
.acc-create-request-button {
    background: #f2f2f2;
    border-radius: 5px;
    padding: 8px 10px;
}
.acc-create-request-button:hover,
.acc-create-request-button:active,
.acc-create-request-button:focus {
    background: #f2f2f2;
    cursor: pointer;
}

.acc-form-container {
    display: none;
    padding: 20px;
}

.acc-form-section {
    margin-bottom: 20px;
}

.acc-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    border: 1px solid #ccc;
    padding: 25px;
    border-radius: 5px;
}

.acc-form-grid-full {
    grid-column: span 3;
}

.acc-form-section input,
.acc-form-section select,
.acc-form-section textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.acc-form-section textarea {
    resize: vertical;
    height: 100px;
}

.acc-submit-button, .acc-submit-button:active, .acc-submit-button:focus {
    padding: 12px 20px;
    background-color: #23459B;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}
.acc-submit-button:hover {
    background-color: #1f55dd;
}

@media (max-width: 768px) {
    .acc-product-row {
        grid-template-columns: 80px 1fr 80px;
        grid-template-rows: auto auto;
        grid-template-areas:
            "image info price"
            "button button .";
        gap: 10px;
        align-items: center;
        text-align: left;
    }

    .acc-product-image {
        grid-area: image;
    }

    .acc-product-info {
        grid-area: info;
    }

    .acc-product-price {
        grid-area: price;
        text-align: right;
    }

    .acc-create-request-button {
        grid-area: button;
        justify-self: start;
    }

    .acc-form-grid {
        display: flex !important;
        flex-direction: column;
        gap: 15px;
    }

    .acc-submit-button {
        width: 100%;
    }
}

.acc-form-notice {
    padding: 10px 15px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
}

.acc-form-notice.acc-success {
    border-color: #4CAF50;
    background-color: #eafae7;
    color: #2e7d32;
}

.acc-form-notice.error {
    border-color: #f44336;
    background-color: #fdecea;
    color: #b71c1c;
}

button.disabled {
    opacity: 0.6;
    pointer-events: none;
    cursor: not-allowed;
}
