/* Container & Layout */
.deep-dispatch-panel {
    font-family: sans-serif;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 20px auto;
}

.deep-dispatch-panel h2 {
    margin-top: 0;
    color: #333;
}

.deep-form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.deep-form-group label {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.2em; /* Larger labels for readability */
    color: #444;
}

/* Large Inputs for Fast Typing */
.large-input, 
.large-select, 
.large-textarea {
    padding: 18px;
    font-size: 1.3em;
    border: 2px solid #ccc;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.large-input:focus, 
.large-select:focus, 
.large-textarea:focus {
    border-color: #0073aa; /* Standard WP Blue */
    outline: none;
}

/* Big Action Buttons */
.button-group {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.big-btn {
    flex: 1;
    padding: 25px;
    font-size: 1.6em;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.primary-btn {
    background-color: #0073aa;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 115, 170, 0.3);
}

.primary-btn:hover {
    background-color: #005177;
    transform: translateY(-2px);
}

.danger-btn {
    background-color: #dc3232;
    color: white;
    box-shadow: 0 4px 6px rgba(220, 50, 50, 0.3);
}

.danger-btn:hover {
    background-color: #a02020;
    transform: translateY(-2px);
}