body .card {
    border: none;
    background: transparent;
    box-shadow: none;
}

body .card-header {
    background: transparent;
    color: var(--prime1);
    padding: 0 0 15px 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}

body .card-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
}

body .card-body {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

body .card-body input, 
body .card-body textarea, 
body .card-body select {
    background-color: #f9f9f9;
    border: 1px solid #e2e2e2;
    transition: all 0.3s ease;
}

body .card-body input:focus {
    background-color: #fff;
    border-color: var(--prime1);
    box-shadow: 0 0 0 4px rgba(162, 28, 85, 0.1);
}

body .table-striped tbody tr:nth-of-type(odd) {
    background-color: #fcfcfc;
}

body .table td, body .table th {
    border-top: 1px solid #eee;
    padding: 15px;
    color: var(--text);
}

body .card-body button[type="submit"] {
    background: var(--prime1);
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: bold;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s;
}

body .card-body button[type="submit"]:hover {
    transform: translateY(-2px);
    background: var(--web-primary-hover-color);
}

.row.fld {
    margin: 1rem 0;
}