body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #eef7f0, #f7fbf8);
    min-height: 100vh;
}

.wrapper {
    padding: 40px 20px;
}

.box-border-no {
    background: #ffffff;
    border: none;
    border-radius: 24px;
    padding: 45px;
    margin-bottom: 30px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.box-border-no:hover {
    transform: translateY(-4px);
}

.title {
    color: #2e7d32;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

p {
    color: #444;
    font-size: 17px;
    line-height: 1.6;
}

.form-control {
    border-radius: 14px;
    height: 52px;
    min-width: 260px;
    border: 2px solid #dfe7df;
    font-size: 16px;
    padding: 12px 18px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #43a047;
}

.btn-success {
    height: 52px;
    border-radius: 14px;
    padding: 0 28px;
    font-weight: 600;
    font-size: 16px;
    background: linear-gradient(135deg, #43a047, #66bb6a);
    border: none;
}

.btn-success:hover {
    transform: scale(1.03);
}

.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.table-no-border td,
.table-no-border th {
    border: none !important;
    padding: 12px;
}

@media (max-width: 768px) {
    .title {
        font-size: 28px;
    }

    .box-border-no {
        padding: 25px;
    }

    .form-control {
        min-width: 100%;
    }
}
