* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #eeebd7;
}

/* Header */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 60px;
    background: #eeebd7;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
    z-index: 1000;
    gap: 20px;
}

.header img {
    cursor: pointer;
}
/* Header */

.content {
    padding: 75px 20px 75px 20px;
}

.greeting {
    color: #3d4b33;
}

.resto-box {
    position: relative;
    border: 2px solid #3d4b33;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.resto-label {
    position: absolute;
    top: -16px;
    left: 20px; /* Sesuaikan dengan padding */
    background-color: #3d4b33;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    padding: 0 15px;
    font-size: 18px;

    max-width: calc(100% - 40px); /* Tetap dalam batas box */
    white-space: normal;
    word-break: break-word;
}

.btn-green {
    background-color: limegreen;
    color: black;
    font-weight: bold;
}

.btn-green:hover {
    background-color: green;
    color: white;
}

.card {
    transition: transform 0.3s ease;
    cursor: pointer;
    background-color: #3d4b33;
    height: 70px;
    display: flex;
    justify-content: center;
    font-weight: bold;
}

.card:hover {
    transform: translateY(-3px);
}