/* ===============================================
   Update learning course form (admin)
   - Table layout
   - Buttons / radio
   - Responsive tweaks
   =============================================== */

/* Table layout */
.form-table td:nth-child(2) {
    text-align: right;
}

.form-table,
.form-table th,
.form-table td {
    border: none !important;
}

table.form-table th:first-child,
table td:first-child {
    width: 200px;
    white-space: nowrap;
}

/* Buttons */
input[type="submit"],
.swpm-account-delete-button {
    display: block;
    margin: 32px auto;
    padding: 12px 40px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    background-color: #333;
    color: #fff;
    text-align: center;
    transition: 0.3s;
}

/* Radios */
.form-radio label {
    display: block;
    margin-bottom: 15px;
}

.form-radio input[type="radio"] {
    margin-right: 20px;
}

/* Responsive */
@media (max-width: 600px) {
    .form-submit input[type="submit"] {
        float: none;
        width: 100%;
    }
}
