.logo {
    width: 100px;
    height:auto;
}
.title {
    color: #EDEDED;
    margin: 0px;
}
.content-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.main {
    margin-bottom: 150px;
}
.first-card{
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}
.second-card{
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}
.radio-card{
    width: 50px;
}
.card-horizontal {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
}
.card-img-left {
    width: 80px; /* Adjust as needed */
    height: 80px;
    object-fit: cover;
    margin: 10px 0px 10px 10px;
    border-radius: 20px 20px 20px 20px;
}
.card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: fit-content;
}
.card {
    border-radius: 15px 15px 15px 15px;
    background-color: #222222;
    width: 500px;
    height: fit-content;
}
.card-text {
    color: #EDEDED;
    padding: 0px;
    margin: 0px;
}
.content {
    font-size: 20px;
}
.content-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #171717;
    color: #EDEDED;
}
.excel {
    margin-right: 8px;
}
.time {
    gap: 16px;
}

@media (max-width: 768px) {
    .logo {
        width: 80px;
        height:auto;
    }
    .card-img-left {
        width: 70px;
        height: 70px;
        border-radius: 10px 10px 10px 10px;

    }
    .card-text {
        font-size: 0.9rem; /* Adjust as needed */
    }
    .content {
        font-size: 1rem; /* Adjust as needed */
    }
    .card {
        width: 100%;
        border-radius: 15px 15px 15px 15px;
    }
}

/* Toast container */
.toast-custom {
    position: fixed;
    top: 20px;
    right: -300px; /* Start off the screen */
    min-width: 250px; /* Set a minimum width */
    padding: 15px;
    border-radius: 5px; /* Rounded edges */
    color: #fff;
    opacity: 0; /* Start with 0 opacity */
    transition: all 0.5s ease; /* Smooth transition */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}

/* Show class for toast */
.toast-show {
    opacity: 1; /* Full opacity */
    right: 20px; /* Slide in to position */
}

/* Success and danger background colors */
.toast-custom.success {
    background-color: rgba(40, 167, 69, 0.5); /* Green with 50% opacity */
}

.toast-custom.error {
    background-color: rgba(220, 53, 69, 0.5); /* Red with 50% opacity */
}

/* Toast message */
.toast-message {
    margin: 0; /* Remove margin for the message */
    font-weight: bold; /* Bold text */
    text-align: center; /* Center the text */
}

/* Button category */
.cat-inactive {
    background-color: #A6EA00;
    color: #ffffff;
}

.cat-inactive:hover {
    background-color: #3E7340; /* Slightly darker yellow-gold on hover */
    text-decoration: none;
}

.cat-active {
    background-color: #3E7340;
    /* color: #aaaaaa; */
}

.cat-active:hover {
    background-color: #3E7340; /* Slightly darker yellow-gold on hover */
    text-decoration: none;
}

#back {
    background-color: #A6EA00;
    border-radius: 30 30 30 30;
}