.container-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
}

.btn-custom {
    background-color: #6c757d;
    color: white;
    transition: all 0.3s;
}

.btn-custom:hover {
    background-color: #5a6268;
    color: white;
}

/* Table Styles */
.table-responsive {
    margin-top: 20px;
}

.credentials-cell {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Modal Styles */
.modal-content {
    border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-box {
        padding: 15px;
    }
}