/* PlayMe Custom Dark Theme (Nederlands) */
.playme-form {
    background-color: #000;
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    font-family: Arial, sans-serif;
    max-width: 720px;
    margin: 0 auto 20px;
    box-sizing: border-box;
}

.playme-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #fff;
}

.playme-form input[type="text"],
.playme-form input[type="email"],
.playme-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 18px;
    border-radius: 8px;
    border: 1px solid #444;
    background-color: #111;
    color: var(--wp--preset--color--pale-cyan-blue);
    box-sizing: border-box;
}

.playme-form input[type="text"]::placeholder,
.playme-form textarea::placeholder {
    color: #bbb;
}

.playme-form input[type="submit"],
.playme-form button,
.playme-submit-button {
    padding: 15px 25px;
    font-size: 18px;
    border-radius: 8px;
    background-color: #444;
    color: #fff;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.playme-form input[type="submit"]:hover,
.playme-form button:hover {
    background-color: #666;
}

.playme-success {
    background-color: #103010;
    border-left: 4px solid #2ecc71;
    padding: 12px;
    margin-bottom: 12px;
    color: #bfeec9;
    border-radius: 6px;
}
.playme-success::before {
    content: "✅ ";
    margin-right: 6px;
}

.playme-error {
    background-color: #301010;
    border-left: 4px solid #e74c3c;
    padding: 12px;
    margin-bottom: 12px;
    color: #f7c6c6;
    border-radius: 6px;
}
.playme-error::before {
    content: "❌ ";
    margin-right: 6px;
}

/* Requests list styling */
.playme-requests-list {
    max-width: 1000px;
    margin: 0 auto;
    background: #000;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
}
.playme-requests-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
}
.playme-requests-table th,
.playme-requests-table td {
    border-bottom: 1px solid #222;
    padding: 8px 10px;
    text-align: left;
    vertical-align: top;
    font-size: 14px;
}
.playme-requests-table thead th {
    border-bottom: 2px solid #333;
    font-weight: 600;
}

/* Responsive tweaks */
@media (max-width: 820px) {
    .playme-requests-table td:nth-child(1),
    .playme-requests-table th:nth-child(1) { display: none; } /* hide time on small screens */
}

@media (max-width: 480px) {
    .playme-form {
        padding: 15px;
    }
    .playme-form input[type="text"],
    .playme-form textarea {
        padding: 12px;
        font-size: 16px;
    }
    .playme-form input[type="submit"] {
        width: 100%;
    }
}
