/* Main Wrapper */
.wpwebsol-student-wrapper,
.wpwebsol-student-table-wrapper,
.wpwebsol-verification-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

/* Grid Layout */
.wpwebsol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

/* Labels */
.wpwebsol-student-wrapper label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

/* Inputs */
.wpwebsol-student-wrapper input,
.wpwebsol-verification-box input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 15px;
    transition: 0.3s;
    background: #fff;
	Width:100%;
}

/* Input Focus */
.wpwebsol-student-wrapper input:focus,
.wpwebsol-verification-box input:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
}

/* Buttons */
.wpwebsol-student-wrapper button,
.wpwebsol-verification-box button,
.wpwebsol-delete-btn {
    background: #0d1267;
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
	width:30%;
}

/* Button Hover */
.wpwebsol-student-wrapper button:hover,
.wpwebsol-verification-box button:hover,
.wpwebsol-delete-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* Submit Button */
.wpwebsol-student-wrapper button {
    margin-top: 20px;
}

/* Table */
.wpwebsol-student-table {
    width: 100%;
    border-collapse: collapse;
	color:#000!important;
}

/* Table Header */
.wpwebsol-student-table th {
    background: #f3f4f6;
    padding: 15px;
    text-align: left;
    font-size: 14px;
    color: #111827;
}

/* Table TD */
.wpwebsol-student-table td {
    padding: 15px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

/* Delete Button */
.wpwebsol-delete-btn {
    background: #dc2626;
	width:100%;
}

/* Verification Success Box */
.wpwebsol-verification-success {
    margin-top: 20px;
    background: #0d1267;
    border: 1px solid #bbf7d0;
    padding: 25px;
    border-radius: 5px;
}

/* Verification Heading */
.wpwebsol-verification-success h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
}

/* Access Denied */
.wpwebsol-access-denied {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 18px;
    border-radius: 5px;
    font-weight: 600;
}

/* Responsive Table */
@media(max-width: 768px){

    .wpwebsol-student-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .wpwebsol-grid {
        grid-template-columns: 1fr;
    }
}


#wpwebsol-verification-form{display:flex;gap:20px;}