/* Custom container for the alert message */
.custom-alert-container {
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
}

/* General Custom Alert Box Styling */
.custom-alert {
    color: white;
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Slight shadow for subtle depth */
    margin-top: 5px;
    display: flex;
    align-items: center; /* Center the icon and text vertically */
    justify-content: center; /* Center the content horizontally */
}

/* Add icon to the left of the alert text */
.custom-alert i {
    font-size: 20px; /* Icon size */
    margin-right: 10px; /* Space between icon and text */
}

/* Info Alert (Default) */
.custom-alert-info {
  background: #0f141a; 
  border: 1px solid #2b5a8c; 
  color: #c8e4ff; 
}


/* Success Alert */
.custom-alert-success {
  background: #0f1a13; 
  border: 1px solid #2f6e49; 
  color: #c8ffdb;
}

/* Error Alert */
.custom-alert-error { 
  background: #1a0f0f; 
  border: 1px solid #763434; 
  color: #ffd0c8; 
}

/* Warning Alert */
.custom-alert-warning { 
  background: #1a140f; 
  border: 1px solid #8c5a2b; 
  color: #ffe2c2; 
}

/* Alert Alert (Neutral) */
.custom-alert-alert {
  background: #131313; 
  border: 1px solid #555; 
  color: #e0e0e0; 
}

/* Strong text styling */
.custom-alert strong {
    font-size: 18px;
    font-weight: 600;
}

/* Responsive styling for smaller screens */
@media (max-width: 600px) {
    .custom-alert {
        width: 90%;
        font-size: 14px; /* Slightly smaller font for smaller screens */
    }

    .custom-alert-container {
        padding: 12px;
    }
}
