body {
    background-color: #0b0f1be6;
}

#title{
    color: white;
}

.card {
    border: 0.5px solid rgba(0, 0, 0, 0.223);
    background: #0b0f1b;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
    height: 100px;
}

.card:hover {
    transform: scale(1.03);
    border: 1px solid #af22ce;
}


.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    width: 330px;
}

.card-description{
    color: rgb(181, 181, 181);
}



.modal-content {
    border-radius: 12px;
    padding: 20px;
    background-color: #0b0f1b;
}

.modal-title {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.modal-body {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.821);
}


.btn-close {
    font-size: 4px;
    --bs-btn-close-color: white;
    --bs-btn-close-bg: transparent;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    filter: brightness(1.5); 
    opacity: 1;
    transition: opacity 0.2s;
}

.btn-close:hover {
    opacity: 0.75; 
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid #dee2e673;
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius);
}
