/* Global Tradesx — Lucky Draw (user cards + admin create form) */

.gtx-ld-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.gtx-ld-card {
    background: #131a2b;
    border: 1px solid #262f45;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.gtx-ld-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 14px;
}

.gtx-ld-fields {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    flex: 1;
}

.gtx-ld-fields li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 1px solid #1c2436;
    color: #c7cddb;
}

.gtx-ld-fields li span:first-child {
    color: #8b93a7;
}

.gtx-ld-fields li span:last-child {
    font-weight: 600;
}

.gtx-ld-create-box {
    background: #131a2b;
    border: 1px solid #262f45;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.gtx-ld-create-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px 18px;
}

.gtx-ld-create-grid .gtx-field-group {
    max-width: none;
    margin-bottom: 0;
}

#gtx-ld-end-box {
    margin: 16px 0 8px;
}
