body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px; /* Largura máxima do contêiner */
    width: 100%; /* Para garantir que o contêiner seja responsivo */
}

h1 {
    margin-bottom: 20px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.card {
    width: 150px;
    height: 150px;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card:hover {
    transform: scale(1.1);
}

.card[data-status="atribuído"] {
    background-color: #007bff; 
}

.card[data-status="liberado"] {
    background-color: #28a745; 
}

.card-content {
    padding: 10px;
}

.card-details {
    display: none;
    background-color: #fff;
    color: #000;
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #ccc;
    border-radius: 0 0 8px 8px;
}

.card:hover .card-details {
    display: block;
}
