/*
 * Stiilid [admin_giftcode_order] lühikoodi jaoks
 * Tume teema
 */

/* Peamine konteiner */
#admin-gift-code-generator {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #34495e;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Pealkirjad */
#admin-gift-code-generator h3,
.admin-open-codes-wrapper h3 {
    color: #ffffff;
    border-bottom: 1px solid #4a627a;
    padding-bottom: 10px;
    margin-top: 0;
    font-weight: 600;
}

/* Paragrahvid ja sildid */
#admin-gift-code-generator p,
#admin-gift-code-generator label {
    color: #bdc3c7;
}

/* Vormi elemendid */
#admin-send-gift-form .form-table {
    border: none;
    width: 100%;
}
#admin-send-gift-form th {
    color: #ecf0f1;
    padding: 15px 10px 15px 0;
    text-align: left;
    width: 150px;
}
#admin-send-gift-form .regular-text,
#admin-send-gift-form select {
    background-color: #2c3e50;
    color: #ecf0f1;
    border: 1px solid #4a627a;
    padding: 8px;
    border-radius: 4px;
    width: 100%;
    max-width: 350px;
}
#admin-send-gift-form .regular-text:focus,
#admin-send-gift-form select:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 1px #3498db;
}

/* Nupud */
.admin-button-group {
    display: flex;
    gap: 10px;
    align-items: center;
}
#admin-gift-code-generator .button-primary {
    background: #3498db;
    border-color: #2980b9;
}
#admin-gift-code-generator .button {
    color: #ffffff;
    text-shadow: none;
    box-shadow: none;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
#admin-gift-code-generator .button:hover,
#admin-gift-code-generator .button:disabled {
    background: #2980b9;
    border-color: #2471a3;
}
#admin-create-link-btn {
    background: #1abc9c;
    border-color: #16a085;
}
#admin-create-link-btn:hover,
#admin-create-link-btn:disabled {
    background: #16a085;
    border-color: #138d75;
}

/* Spinner */
#admin-giftcode-spinner {
    float: none;
    vertical-align: middle;
    margin-left: 10px;
    visibility: hidden;
}
#admin-giftcode-spinner.is-active {
    visibility: visible;
}

/* Genereeritud lingi ala */
#admin-generated-link-wrapper {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #4a627a;
}
.generated-link-display {
    position: relative;
    margin-bottom: 10px;
}
#generated-link-input {
    width: 100%;
    background-color: #2c3e50;
    color: #f1c40f;
    border: 1px solid #4a627a;
    padding: 8px;
    border-radius: 4px;
    font-family: monospace;
}
.copy-success-message {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #27ae60;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
#admin-clear-btn {
    background: #7f8c8d;
    border-color: #616a6b;
}
#admin-clear-btn:hover {
    background: #616a6b;
    border-color: #515a5a;
}


/* Avatud koodide nimekiri */
.admin-open-codes-wrapper {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #4a627a;
}
#admin-open-codes-list {
    width: 100%;
    border-collapse: collapse;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
#admin-open-codes-list th,
#admin-open-codes-list td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #4a627a;
    vertical-align: middle;
}
#admin-open-codes-list th {
    background-color: #2c3e50;
    color: #ffffff;
    font-weight: 600;
}
#admin-open-codes-list td {
    background-color: #34495e;
    color: #bdc3c7;
}
#admin-open-codes-list tbody tr:last-child td {
    border-bottom: none;
}
#admin-open-codes-list tbody tr:hover td {
    background-color: #4a627a;
    color: #ffffff;
}
#admin-open-codes-list strong {
    color: #f1c40f;
    font-weight: 600;
}

/* Kustutamise nupp */
.delete-giftcode-btn {
    background-color: #c0392b !important;
    border-color: #a93226 !important;
    color: #fff !important;
    padding: 4px 8px !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    height: auto !important;
    border-radius: 4px !important;
}
.delete-giftcode-btn:hover {
    background-color: #a93226 !important;
}
.delete-giftcode-btn:disabled {
    background-color: #922b21 !important;
    opacity: 0.7;
}
