/* Lighter Blue Theme */
body {
    background-color: #f0f8ff; /* Light blue background */
    font-family: 'Arial', sans-serif;
}

.navbar {
    background-color: #87CEEB !important; /* Sky blue */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: #fff !important;
    font-weight: bold;
}

.navbar-nav .nav-link {
    color: #fff !important;
}

.navbar-nav .nav-link:hover {
    color: #f8f9fa !important;
}

.container {
    margin-top: 20px;
}

.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #87CEEB; /* Sky blue */
    color: #fff;
    font-weight: bold;
}

.btn-primary {
    background-color: #87CEEB; /* Sky blue */
    border: none;
}

.btn-primary:hover {
    background-color: #6CA6CD; /* Darker sky blue */
}

.table {
    margin-top: 20px;
}

.table thead {
    background-color: #87CEEB; /* Sky blue */
    color: #fff;
}

.table th, .table td {
    vertical-align: middle;
}

.table-hover tbody tr:hover {
    background-color: #f1f1f1;
}

.form-control:focus {
    border-color: #87CEEB; /* Sky blue */
    box-shadow: 0 0 0 0.2rem rgba(135, 206, 235, 0.25);
}

/* Admin Login Button */
.btn-primary {
    background-color: #0d6efd;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #0b5ed7;
}

/* Style for Copy Icons */
.copy-icon {
    cursor: pointer; /* Change cursor to hand pointer */
    margin-left: 5px; /* Add some spacing */
    color: #007bff; /* Blue color for the icon */
    transition: color 0.3s ease; /* Smooth color transition */
}

.copy-icon:hover {
    color: #0056b3; /* Darker blue on hover */
}

/* Add these to your existing CSS */
.copy-icon {
    color: #3498db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-icon:hover {
    color: #2874a6;
}

.description-text {
    max-width: 200px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}