/* Global styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #fff;
}

/* Navigation bar styles */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5); /* Translucent black background */
    border-radius: 5px;
    margin-bottom: 20px;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    display: block;
    color: #fff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Background color when hovering */
    color: #ff8000; /* Text color when hovering */
}

/* Card styles */
.card {
    background-color: rgba(0, 0, 0, 0.7); /* Translucent black background */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.card h5 {
    color: #ff8000;
}

/* Input box styles */
.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    border-radius: 5px;
}

.form-control::placeholder {
    color: #ccc;
}

.form-control:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Button styles */
.btn {
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #ff8000;
    border: none;
}

.btn-primary:hover {
    background-color: #e67300;
}

.btn-danger {
    background-color: #dc3545;
    border: none;
}

.btn-danger:hover {
    background-color: #c82333;
}