/* ----------------------------------------
   Public IP & MX Dashboard - Modern Style
-----------------------------------------*/

body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background-color: #f4f7f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

h1 {
    margin-top: 20px;
    color: #2c3e50;
}

table {
    border-collapse: collapse;
    width: 90%;
    max-width: 600px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 12px 15px;
    text-align: left;
}

tr:nth-child(even) {
    background-color: #f6f8fa;
}

tr:hover {
    background-color: #e1f0ff;
}

td:first-child {
    font-weight: bold;
    color: #34495e;
}

small {
    margin-top: 12px;
    display: block;
    color: #7f8c8d;
}

.container {
    width: 100%;
    text-align: center;
}

.alert {
    background-color: #ffe5e5 !important;
    color: #b00000;
    font-weight: bold;
}

/* Responsive voor mobiel */
@media (max-width: 480px) {
    table {
        width: 95%;
    }
    th, td {
        padding: 8px 10px;
    }
}

