/* akkus-ui / style.css - Güncel ve çalışan hali */

.akkus-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.akkus-btn.primary {
    background-color: #6366f1; /* mor */
    color: white;
}
.akkus-btn.primary:hover {
    background-color: #4f46e5;
    transform: translateY(-2px);
}

.akkus-btn.secondary {
    background-color: #6b7280; /* gri */
    color: white;
}
.akkus-btn.secondary:hover {
    background-color: #4b5563;
    transform: translateY(-2px);
}

.akkus-btn.danger {
    background-color: #ef4444; /* kırmızı */
    color: white;
}
.akkus-btn.danger:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
}

/* Yardımcı stiller */
.preview {
    border: 1px solid #ddd;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    background: #f9f9f9;
}

.copy-btn {
    background: #6366f1;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}
.copy-btn:hover {
    background: #4f46e5;
}

/* ────────────────────────────────────────────── */
/* Hazır Menü (Navbar) - Çalışan ve temiz hali    */
/* ────────────────────────────────────────────── */

.akkus-navbar {
    display: flex;
    border-radius: 12px;
    background-color: royalblue;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin: 30px 0;
}

.akkus-navbar > div {
    flex: 1;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.akkus-navbar > div > a {
    color: white !important;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.5s ease;
}

.akkus-navbar > div:hover {
    background-color: dodgerblue !important;
}

.akkus-navbar > div:hover > a {
    font-size: 20px;
    font-weight: 600;
}

/* Köşeleri yuvarlak yap */
.akkus-navbar > div:first-child {
    border-radius: 12px 0 0 12px;
}

.akkus-navbar > div:last-child {
    border-radius: 0 12px 12px 0;
}
.akkus-navbar > div:last-child {
    border-radius: 0 12px 12px 0;
}
