body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

header {
    background-color: #ff0000;
    color: #ffffff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

header nav {
    display: flex;
    gap: 15px;
}

header nav a {
    color: #ffffff;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
}

.user-icon {
    width: 30px;
    height: 30px;
    background: url('assets/images/profile-placeholder.png') no-repeat center center;
    background-size: cover;
    border-radius: 50%;
    margin-left: 10px;
}

main {
    padding: 20px;
}

.dashboard {
    background: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.server-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 20px;
}
