/* File: style_tampil.css untuk tampil_data.php */

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f1faee;
    margin: 0;
    padding: 20px;
    text-align: center;
}

h2 {
    color: #1d3557;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a.add-btn {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: #457b9d;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

a.add-btn:hover {
    background: #1d3557;
}

table {
    border-collapse: collapse;
    width: 80%;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 12px 15px;
    text-align: center;
}

th {
    background: #1d3557;
    color: #fff;
}

tr:nth-child(even) {
    background: #f9f9f9;
}

tr:hover {
    background: #e0f2f1;
    transition: 0.3s;
}

a.btn {
    display: inline-block;
    padding: 6px 12px;
    margin: 2px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    color: #fff;
    transition: 0.3s;
}

a.edit {
    background: #457b9d;
}

a.edit:hover {
    background: #1d3557;
}

a.delete {
    background: #e63946;
}

a.delete:hover {
    background: #a4161a;
}
