/* Grundläggande stilar */
body {
    padding-top: 56px;
    background-color: #343a40;
    color: white;
    font-family: 'Arial', sans-serif;
}

/* Navbar styling */
.navbar {
    background: linear-gradient(to right, #006666, #008080);
    box-shadow: 0 2px 20px rgba(0, 255, 255, 0.4);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    position: relative;
    padding: 5px 15px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.2);
    margin-right: 20px;
}

.navbar-brand span.plump {
    color: white;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.8),
                 0 0 30px rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.navbar-brand span.online {
    color: #00CED1;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 206, 209, 0.8),
                 0 0 20px rgba(0, 206, 209, 0.8),
                 0 0 30px rgba(0, 206, 209, 0.6);
    letter-spacing: 1px;
}

/* Formulär styling */
.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00CED1;
    box-shadow: 0 0 15px rgba(0, 206, 209, 0.3);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-group {
    margin-bottom: 15px;
}

.input-group .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 12px 25px;
}

/* Button styling */
.btn {
    border-radius: 20px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 5px 0;
    border: none;
}

.btn-primary {
    background: linear-gradient(to right, #006666, #008080);
    box-shadow: 0 0 10px rgba(0, 206, 209, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(to right, #008080, #00a3a3);
    box-shadow: 0 0 20px rgba(0, 206, 209, 0.5);
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(to right, #28a745, #34ce57);
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
}

.btn-success:hover {
    background: linear-gradient(to right, #34ce57, #40e069);
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(to right, #6c757d, #868e96);
    box-shadow: 0 0 10px rgba(108, 117, 125, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(to right, #868e96, #999);
    box-shadow: 0 0 20px rgba(108, 117, 125, 0.5);
    transform: translateY(-2px);
}

/* Card styling */
.card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.2);
}

.card-title {
    color: #00CED1;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Table styling */
.table {
    color: white;
    margin-bottom: 0;
}

.table th {
    background: rgba(0, 128, 128, 0.2);
    border: none;
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    color: #00CED1;
}

.table td {
    border-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Logo styling */
.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.logo-container img {
    max-width: 200px;
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

/* Saldo display */
.saldo-display {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 20px;
    margin: 10px 0;
    border: 1px solid rgba(0, 206, 209, 0.3);
    color: #00CED1;
    font-weight: bold;
    text-align: center;
}

/* Text styling */
.text-gold {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Footer styling */
.footer {
    background: linear-gradient(to right, #006666, #008080);
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 -2px 20px rgba(0, 255, 255, 0.4);
}

.footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Responsive styling */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .card {
        padding: 15px;
    }

    .table td, .table th {
        padding: 10px;
        font-size: 0.8rem;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .form-control {
        padding: 8px 16px;
    }

    .saldo-display {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Swish logo styling */
.swish-logo {
    max-width: 150px;
    margin: 10px auto;
    display: block;
    transition: transform 0.3s ease;
}

.swish-logo:hover {
    transform: scale(1.1);
}

/* Link styling */
a {
    color: #00CED1;
    transition: all 0.3s ease;
    text-decoration: none;
}

a:hover {
    color: #00FFFF;
    text-decoration: none;
}

/* Animation keyframes */
@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(0, 206, 209, 0.3);
    }
    to {
        box-shadow: 0 0 20px rgba(0, 206, 209, 0.6);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}