.devx-education-card{

background:#fff;

border:1px solid #e5e5e5;

border-radius:12px;

padding:25px;

margin-bottom:25px;

box-shadow:0 3px 10px rgba(0,0,0,.05);

}

.devx-education-card h4{

margin-bottom:20px;

color:#0d6efd;

font-size:24px;

}

.devx-info-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin-bottom:25px;

}

.devx-info-grid strong{

display:block;

color:#444;

margin-bottom:5px;

}

.devx-info-grid p{

margin:0;

color:#666;

}

.devx-actions{

display:flex;

justify-content:flex-end;

gap:15px;

}

.devx-edit-btn{

background:#0d6efd;

color:#fff;

border:none;

padding:10px 20px;

border-radius:6px;

cursor:pointer;

}

.devx-delete-btn{

background:#dc3545;

color:#fff;

border:none;

padding:10px 20px;

border-radius:6px;

cursor:pointer;

}

@media(max-width:768px){

.devx-info-grid{

grid-template-columns:1fr;

}

.devx-actions{

justify-content:center;

}

}

.devx-error{

    background:#ffe6e6;

    color:#b00020;

    padding:15px;

    border-left:5px solid #dc3545;

    border-radius:6px;

    margin-bottom:20px;

    font-weight:600;

}