/* 🔥 iOS Style */

body {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", sans-serif;
}

/* Glass Navbar */
.navbar {
    background: rgba(255,255,255,0.08) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Cards */
.container, .card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    padding: 15px;
}

/* Buttons */
.btn {
    border-radius: 12px !important;
    transition: all 0.2s ease;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0,123,255,0.6);
}

/* Inputs */
input, select {
    background: rgba(255,255,255,0.08) !important;
    border: none !important;
    color: white !important;
    border-radius: 10px !important;
}

/* Dropzone */
.dropzone {
    background: rgba(255,255,255,0.05);
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 20px;
}

/* Smooth */
* {
    transition: all 0.2s ease-in-out;
}
/* 🚀 ULTRA iOS DESIGN */

/* Background */
body {
    background: radial-gradient(circle at top, #1e293b, #020617);
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", sans-serif;
}

/* Navbar Glass */
.navbar {
    background: rgba(255,255,255,0.06) !important;
    backdrop-filter: blur(20px);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* Main Container */
.container {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Buttons */
.btn {
    border-radius: 14px !important;
    padding: 10px 18px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border: none !important;
    color: white !important;
}

.btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 25px rgba(59,130,246,0.7);
}

/* Inputs */
input, select {
    background: rgba(255,255,255,0.06) !important;
    border: none !important;
    color: white !important;
    border-radius: 12px !important;
    padding: 10px;
}

/* Floating Upload Button */
.fab-upload {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    cursor: pointer;
    z-index: 9999;
}

.fab-upload:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(147,51,234,0.8);
}

/* Dropzone Premium */
.dropzone {
    border-radius: 25px;
    border: 2px dashed rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.03);
    padding: 40px;
    text-align: center;
}

.dropzone:hover {
    background: rgba(255,255,255,0.08);
}

/* Smooth Animations */
* {
    transition: all 0.25s ease-in-out;
}
.glass-card {
    background: rgba(255,255,255,0.04) !important;
    backdrop-filter: blur(15px);
    border-radius: 20px !important;
}
body {
    background: linear-gradient(135deg, #0f172a, #1e293b) !important;
    color: white;
}

/* GLASS CARD */
.glass-card {
    background: rgba(255,255,255,0.05) !important;
    backdrop-filter: blur(20px);
    border-radius: 20px !important;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.2s ease;
}

.glass-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
/* BACKGROUND GLOW */
body {
    background: radial-gradient(circle at 20% 30%, #1d4ed8, transparent 40%),
                radial-gradient(circle at 80% 70%, #9333ea, transparent 40%),
                linear-gradient(135deg, #0f172a, #020617) !important;
}
.container {
    max-width: 1100px;
}
.container > div {
    margin-top: 40px;
}
input.form-control {
    background: rgba(255,255,255,0.08) !important;
    border: none !important;
    color: white !important;
    border-radius: 12px !important;
}

.btn {
    border-radius: 12px !important;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border: none;
}
.navbar {
    margin: 20px auto;
    max-width: 1100px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08) !important;
    backdrop-filter: blur(20px);
}
.text-muted {
    opacity: 0.6;
    font-size: 18px;
}
.icon-btn {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hover Animation */
.btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(59,130,246,0.6);
}
.icon-btn {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif !important;
    font-size: 16px !important;
    color: white !important;
}
.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.icon-btn svg {
    transition: all 0.2s ease;
}

.btn:hover svg {
    transform: scale(1.2);
}

.btn:hover {
    box-shadow: 0 0 15px rgba(59,130,246,0.6);
    transform: scale(1.08);
}
/* 🔥 GLASS STYLE */
.glass-input input {
    background: rgba(255,255,255,0.08) !important;
    border: none !important;
    color: white !important;
}

.glass-dropdown {
    background: rgba(30,30,40,0.8);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* BUTTON STYLE */
.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 12px !important;
}

/* HOVER */
.btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(59,130,246,0.7);
}

/* SVG ANIMATION */
.icon-btn svg {
    transition: all 0.2s ease;
}

.btn:hover svg {
    transform: scale(1.2);
}
/* 🔥 SVG FIX */
.icon-btn svg {
    stroke: white !important;
    fill: none !important;
    width: 18px;
    height: 18px;
}

/* falls immer noch unsichtbar */
.btn-primary svg,
.btn-info svg,
.btn-danger svg,
.btn-secondary svg {
    stroke: white !important;
}
/* 🔥 DROPDOWN FIX */
.dropdown-menu {
    z-index: 9999 !important;
    position: absolute !important;
}

/* Navbar darf NICHT drüber liegen */
.navbar {
    z-index: 1 !important;
}
/* 🔥 iOS Background */
body {
    background: linear-gradient(135deg, #0f172a, #1e293b, #6b21a8);
}

/* 🔥 Cards wie iOS */
.card, .container {
    background: rgba(255,255,255,0.06) !important;
    backdrop-filter: blur(20px);
    border-radius: 20px !important;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

/* 🔥 Navbar floating */
.navbar {
    background: rgba(255,255,255,0.08) !important;
    backdrop-filter: blur(25px);
    border-radius: 20px;
    margin: 20px;
}
/* 🔥 FIX LAYOUT */
.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-4 {
    display: flex;
    align-items: center;
}

/* Links / Mitte / Rechts wieder korrekt */
.col-md-4:nth-child(1) {
    justify-content: flex-start;
}

.col-md-4:nth-child(2) {
    justify-content: center;
}

.col-md-4:nth-child(3) {
    justify-content: flex-end;
}
/* 🔥 SVG FIX (FINAL) */
.icon-btn svg {
    stroke: #ffffff !important;
    fill: none !important;
    opacity: 1 !important;
    display: block !important;
}

/* FALLBACK: einfach sichtbar machen */
.icon-btn {
    color: white !important;
}
/* 🔥 SMOOTH FADE IN */
body {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🔥 CARD FLOAT */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px) scale(1.01);
}

/* 🔥 BUTTON PRESS */
.btn {
    transition: all 0.15s ease;
}

.btn:active {
    transform: scale(0.95);
}

/* 🔥 HOVER GLOW */
.btn:hover {
    box-shadow: 0 0 25px rgba(99,102,241,0.8);
}

/* 🔥 INPUT FOCUS */
input:focus {
    box-shadow: 0 0 15px rgba(59,130,246,0.5);
}

/* 🔥 DROPDOWN FADE */
.dropdown-menu {
    animation: fadeDropdown 0.2s ease;
}

@keyframes fadeDropdown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* 🔥 FORCE VISIBLE ICONS */
.icon-btn svg {
    width: 18px;
    height: 18px;

    stroke: white !important;
    stroke-width: 2.5 !important;
    fill: white !important; /* DAS IST DER FIX */

    display: block;
}

/* falls background zu hell */
.btn {
    color: white !important;
}
/* 🔥 CONTENT BREITER */
.container {
    max-width: 1400px !important;
}

/* 🔥 ROW FIX */
.row {
    display: flex;
    justify-content: space-between;
}

/* 🔥 SPACING */
.col-md-4 {
    flex: 1;
}
.navbar {
    margin: 20px auto !important;
    max-width: 1400px;
}
/* 🔥 BACKGROUND ANIMATION */
body {
    background: linear-gradient(270deg, #1e3a8a, #6b21a8, #1e293b);
    background-size: 600% 600%;
    animation: gradientMove 12s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 🔥 FLOATING CARDS */
.container {
    animation: floatUp 0.8s ease;
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🔥 CARD HOVER */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* 🔥 BUTTON GLOW */
.btn {
    transition: all 0.2s ease;
}

.btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(99,102,241,0.9);
}

/* 🔥 CLICK EFFECT */
.btn:active {
    transform: scale(0.92);
}
/* 🌈 ANIMATED BACKGROUND */
body {
    background: linear-gradient(270deg, #0f172a, #1e3a8a, #6b21a8, #0f172a);
    background-size: 600% 600%;
    animation: gradientShift 15s ease infinite;
    color: white;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 🍎 GLASS BASE */
.glass {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* 🍎 NAVBAR GLASS */
.navbar {
    background: rgba(255,255,255,0.08) !important;
    backdrop-filter: blur(30px);
    border-radius: 20px;
    margin: 20px auto;
    max-width: 1400px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.6);
}

/* 🍎 CONTAINER */
.container {
    max-width: 1400px !important;
}

/* 🍎 CARDS */
.card {
    background: rgba(255,255,255,0.06) !important;
    backdrop-filter: blur(20px);
    border-radius: 20px !important;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0,0,0,0.8);
}

/* 🍎 BUTTONS */
.btn {
    border-radius: 14px !important;
    font-weight: 500;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(99,102,241,0.8);
}

.btn:active {
    transform: scale(0.92);
}

/* 🍎 INPUT */
input {
    background: rgba(255,255,255,0.08) !important;
    border: none !important;
    border-radius: 12px !important;
    color: white !important;
}

/* 🍎 DROPDOWN */
.dropdown-menu {
    background: rgba(20,20,30,0.9);
    backdrop-filter: blur(25px);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 9999 !important;
}

/* ✨ LIGHT REFLECTION EFFECT */
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.2),
        transparent 40%
    );
    opacity: 0.3;
    pointer-events: none;
}

/* 🔥 SMOOTH FADE IN */
body {
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
body::after {
    content: "";
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99,102,241,0.3), transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    left: var(--x, 50%);
    top: var(--y, 50%);
}
