/* Default Flexbox Layout (row direction) */
.form-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-container select,
.form-container input[type="submit"] {
    flex-grow: 1;
    padding: 5px 10px;
}

.form-container input[type="submit"] {
    background: #e84545;
    color: white;
    padding: 8px 16px;
    transition: background 0.3s ease, transform 0.3s ease;
    width: 100px;
}

#check-balance {
    background: #e84545;
    color: white;
    padding: 8px 16px;
    transition: background 0.3s ease, transform 0.3s ease;
    width: 100px;
}

/* Styling for the modal body */
.modal-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-size: 1rem;
}

.modal-header {
    background-color: #e84545;
    color: white;
    font-weight: bold;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
}

/* Styling for each result item */
.result-item {
    width: 100%;
}

.result-item div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.result-item i {
    margin-right: 10px;
    font-size: 1.25rem;
    color: #6c757d;
}

.result-item span:first-child {
    font-weight: bold;
    color: #333;
}

/* Custom icon colors */
.icon-success {
    color: #28a745;
}

.icon-warning {
    color: #ffc107;
}

.icon-error {
    color: #dc3545;
}

/* Media Query for Smaller Screens */
@media screen and (max-width: 768px) {
    .form-container {
        flex-direction: column;
        /* Stack elements vertically */
        align-items: stretch;
        /* Ensure the elements take full width */
    }

    .form-container select,
    .form-container input[type="submit"] {
        width: 100%;
        /* Make both select and button take full width */
        margin-bottom: 10px;
        /* Add space between the select and button */
    }
}
.search-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }