#profiAks .modal-body{
    padding: 0;
}
#profiAks .modal-dialog {
    max-width: 800px;
    width: 100%;
    margin: 1.75rem auto;
}

#profiAks .modal-content {
    border-radius: 8px;
    padding: 20px;
}

#profiAks .modal-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 15px;
}

#profiAks .modal-title {
    font-size: 24px;
}

.aks-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
}

.aks-item:last-child {
    border-bottom: none;
}

.aks-item-image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin-right: 20px;
}

.aks-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.aks-item-name {
    flex-grow: 1;
    font-size: 16px;
    padding-right: 20px;
}

.aks-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.aks-quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.aks-quantity-control img {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.aks-quantity {
    font-size: 18px;
    min-width: 30px;
    text-align: center;
}

.aks-add-btn {
    background-color: #314453;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.aks-add-btn:hover {
    background-color: #314453;
    opacity: .8;
}

.aks-delete {
    cursor: pointer;
}

.aks-delete img {
    width: 24px;
    height: 24px;
}

.modal-footer-fixed {
    position: sticky;
    bottom: 0;
    background: white;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.done-btn {
    background-color: rgb(239, 227, 55);
    color: #000;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.done-btn:hover {
    background-color: rgb(219, 208, 50);
}

@media (max-width: 768px) {
    .aks-item{
        padding: 0;
    }
    #profiAks .modal-dialog {
        margin: 0;
        border-radius: 0;
    }
    #profiAks .modal-content{
        border-radius: 0;
    }
    
    .aks-item {
        padding: 5px 0;
    }
    
    .aks-item-image {
        margin-right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .aks-item-name {
        padding-right: 10px;
        font-size: 12px;
        flex:1;
    }
    .aks-add-btn{
        font-size: 12px;
    }
    #profiAks .modal-title{
        font-size: 16px;
        font-weight: 600;

    }
    #profiAks .modal-header{
        padding: 10px 0;
    }
}