/* Reset some default styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

/* Card Styles */
.card {
    background-color: #F8FBFE;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 190px;
    height: 254px;
    margin: 20px auto;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

/* Tools Styles */
.tools {
    display: flex;
    align-items: center;
    padding: 9px;
    background-color: #eee;
}

.circle {
    padding: 0 4px;
}

.box {
    display: inline-block;
    align-items: center;
    width: 10px;
    height: 10px;
    padding: 1px;
    border-radius: 50%;
}

.red {
    background-color: #ff605c;
}

.yellow {
    background-color: #ffbd44;
}

.green {
    background-color: #00ca4e;
}

/* Card Content Styles */
.card__content {
    padding: 20px;
    font-size: 16px;
    color: #333;
}

/* Responsive Design */
@media (min-width: 600px) {
    .card {
        max-width: 400px;
        height: auto;
    }
}

@media (min-width: 900px) {
    .card {
        max-width: 600px;
        height: auto;
    }
}
