/*
  Use the following to include this css file
  <link rel="stylesheet" href="styles.css" />
*/
 body {
            font-family: 'Roboto', sans-serif;
            background-color: #f5f5f5;
        }
        .main-container {
            max-width: 800px;
            margin: 40px auto;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }
        .header {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 30px;
        }
        .search-box {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .result-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            border: 1px solid #e0e0e0;
        }
        .point-section {
            margin: 15px 0;
            padding: 15px;
            border-radius: 8px;
        }
        .bonus-points {
            background-color: #e3f2fd;
        }
        .deduction-points {
            background-color: #fbe9e7;
        }
        .total-score {
            font-size: 24px;
            color: #1976d2;
            text-align: center;
            padding: 15px;
            margin-top: 20px;
            background: #e3f2fd;
            border-radius: 8px;
        }
        .search-btn {
            width: 100%;
            padding: 12px;
            font-size: 16px;
            font-weight: 500;
            margin-top: 10px;
        }
        .list-group-item {
            margin-bottom: 5px;
            border-radius: 5px !important;
        }
        .badge-success {
            background-color: #28a745 !important;
            color: white;
        }
        .badge-danger {
            background-color: #dc3545 !important;
            color: white;
        }
        .activity-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
        }
        .activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    margin: 5px 0;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.activity-item span {
    font-size: 16px;
    color: #333;
}

.activity-item .badge {
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
}

.badge-success {
    background-color: #28a745 !important; /* Giữ màu nền xanh */
    color: #ffffff !important; /* Đổi màu chữ thành trắng */
}

.badge-danger {
    background-color: #dc3545 !important; /* Giữ màu nền đỏ */
    color: #ffffff !important; /* Đổi màu chữ thành trắng */
}


  
  
  .blinking-button {
    animation: blink 0.87s infinite; /*hiệu ứng chớp chớp của thông Báo*/
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}

    
