/* Modern glassmorphism effect for cards */
.bg-glass {
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    border: 1px solid rgba(42, 189, 215, 0.2);
}

/* Gradient text for headings */
.gradient-text {
    background: linear-gradient(90deg, #6cf0d8, #25b7c5, #06f0d5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stylish login button */
.btn-gradient {
    background: linear-gradient(90deg, #25b7c5 0%, #06f0d5 100%);
    color: #121212;
    border: none;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    font-weight: bold;
    border-radius: 2rem;
}
.btn-gradient:hover {
    background: linear-gradient(90deg, #06f0d5 0%, #25b7c5 100%);
    color: #fff;
    box-shadow: 0 4px 24px 0 rgba(42, 189, 215, 0.2);
}

/* Fun fact box styling */
.fun-fact-box {
    background: linear-gradient(135deg, #0f1e0f 80%, #25b7c5 100%);
    color: #fff;
    border-left: 6px solid #06f0d5;
}

/* Responsive image styling */
#dogImage, #catImage {
    border: 4px solid #06f0d5;
    max-height: 250px;
    max-width: 100%;
    object-fit: cover;
    background: #222;
}

/* General improvements */
body {
    background: linear-gradient(120deg, #121212 60%, #25b7c5 100%);
    color: #e6f7fa;
    min-height: 100vh;
}

.card {
    border-radius: 1.5rem;
}

h1, h4 {
    letter-spacing: 1px;
}

.nav-links .btn {
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 2rem;
}
.custom-footer{
    text-align: center;
    padding: 20px 10px;
    border-top: whitesmoke;
    font-family: 'Courier New', Courier, monospace;
    font-size: small;
    margin-top: 400px;
    color: white;
}

.custom-footer p{
    margin: 6px;
    transition: color 0.3s;


}

.custom-footer p:hover{
    color: #35aeb9;
}


body {
    background-color: #121212;
    color: rgb(42, 189, 215);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.text-center{
    text-align: center;
}
.custom-error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
}


h1{
    margin-top: 30px;
    margin-bottom: 20px;
    color: #6cf0d8;
    text-align: center;
}

.search-form{
    display:flex;
    justify-content: center;
    margin-bottom: 30px;
}

.search-form input[type="text"] {
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    color: black;

}

.search-form button{
    border: none;
    padding: 8px 16px;
    background-color: #25b7c5;


}

table{
    width: 95%;
    margin: auto;
    background-color: black;
    border-radius: 7px;
    overflow: hidden;
}

th{
    background-color: #25e2c6;
    color: #1c1c1c;
    padding: 11px;
}

td{
    padding: 11px;
    vertical-align: middle;
}

.btn-sm{
    font-size: medium;
}

.btn-warning{
    background-color: rgb(90, 184, 225);
    border: none;
}

.btn-warning:hover{
    background-color: #00eaff;
}


.logout-link {
    color: #f64444;
  }

.logout-link:hover {
    color: #860000;
  }

.main-content{
    display: flex;
    height: 100vh;
    background-color: #c3c3c3;
}

.nav-bar{
    flex:1;
    padding: 20px;
    background-color: #539f95;
}

.center-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #121212;
}

.form-wrapper input,

.form-wrapper select{
    width: 100%;
    padding: 8px;
    margin: 5px ;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
}

.form-wrapper button{
    background-color: #25b7c5;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-success {
    background-color: #27a9bd;
    border: none;
}

.btn-success:hover {
    background-color: #2364a8;
}

.custom-error-message{
    color: red;
    font-weight: bold;
    padding: 10px;
}

