/* General container styling */
#kpt-my-orders-container {
    margin: 20px;
    text-align: center;
}

/* Button styling */
#kpt-my-orders-button {
    width: 100vw;
    height: 10vh;
    font-size: 18px;
    background-color: #ffa500; /* Orange accent */
    color: #ffffff; /* White text */
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 20px;
}

#kpt-my-orders-button:disabled {
    background-color: #808080; /* Gray while loading */
    cursor: not-allowed;
}

/* Order list styling */
#kpt-my-orders-list {
    margin: 20px auto;
    text-align: left;
    max-width: 90vw;
    font-size: 16px;
    line-height: 1.6;
}

/* Order item styling */
.kpt-order {
    border: 1px solid #808080; /* Gray border */
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #ffffff; /* White background */
}

/* Product custom options styling */
.kpt-custom-options {
    margin: 10px 0;
    padding-left: 20px;
    color: #ffa500; /* Orange for custom options */
    font-style: italic;
}

.kpt-custom-options li {
    list-style-type: circle;
}
