body {
    background-color:white; /* açık gri: #4b4b4b, koyu gri: #242424, koyu sarı: #fcba03, açık sarı: #ffdc04 */
    margin-top:20px;
    margin-left:20px
}
table {
    border: 1px solid;
    border-collapse: collapse;
}
th, td {
    text-align: left;
    border: 1px solid;
    border-collapse: collapse;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
}
td,label,input,textarea {
    font-family: "Oxanium", serif; 
    font-optical-sizing: auto; 
    font-size:16px; 
    font-weight: 300; 
    font-style: normal;
}
p {
    font-family: "Oxanium", serif;
	font-optical-sizing: auto;
	font-size:28px;
	font-weight: 600;
	font-style: normal;
}
a,button,th {
    font-family: "Oxanium", serif;
	font-optical-sizing: auto;
	font-size:18px;
	font-weight: 500;
	font-style: normal;
}
a, a:visited{color: black;}
button {
    border-radius: 8px;
    border:none;
    background-color:#fcba03;
    color:white;
}
button:hover {
    border-radius: 8px;
    border:none;
    background-color:#ffdc04;
    color: white;
}

input,textarea {
    box-sizing: border-box;
    border: 1px solid #aaa;
    border-radius: 4px;
}

:root {
    --primary-yellow: #fcba03;
    --primary-accent: #8196dd;
    --text-dark: #333333;
    --white: #FFFFFF;
    --font-primary: 'Oxanium', cursive;
}

.login-body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f5f5f5;
    width: 100%;
    overflow-x: hidden;
}

/* Navigation */
header {
    width: 100%;
    height: 90px;
    background-color: var(--white);
    position: fixed;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav {
    width: 100%;
    max-width: 1440px;
    height: 100%;
}

.nav-content {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo img {
    height: 32px;
    width: auto;
    padding: 4px 0;
}

.nav-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-register {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.btn-login {
    background-color: var(--primary-yellow);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

/* Hero Section */
.hero-section {
    width: 100vw;
    height: 326px;
    margin-top: 90px;
    overflow: hidden;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Main Content */
main {
    display: flex;
    justify-content: center;
    width: 100%;
}

.content-wrapper {
    width: 100%;
    max-width: 1440px;
    padding: 30px 109px;
    display: flex;
    justify-content: center;
}

/* Login Container */
.login-container {
    width: 1222px;
    min-height: 839px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    padding: 50px 0 40px 0;
}

.login-box {
    width: 800px;
    text-align: left;
    padding: 40px;
}

.login-container h1 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-yellow);
    font-weight: 600;
}

.login-description {
    color: #666;
    margin-bottom: 35px;
    font-size: 14px;
    font-weight: 400;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-form input {
    padding: 16px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--font-primary);
    width: 100%;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.btn-submit {
    background-color: var(--primary-yellow);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: var(--font-primary);
    width: 100%;
    flex: 1;
}

.btn-submit:hover {
    background-color: #ffdc04;
}

.forgot-password {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    margin-top: 12px;
    display: inline-block;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .content-wrapper {
        padding: 30px 20px;
    }

    .login-container {
        width: 100%;
        max-width: 1222px;
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 0 20px;
    }
    
    .hero-section {
        height: 200px;
    }
    
    .login-container {
        height: auto;
        min-height: 600px;
    }
    
    .login-box {
        width: 90%;
        max-width: 400px;
        padding: 20px;
    }
}

/* Add these new styles for signup page */
.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    font-size: 14px;
}

.terms-checkbox input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.terms-link {
    color: var(--primary-yellow);
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.login-redirect {
    font-size: 14px;
    color: #666;
    margin-top: 16px;
}

.redirect-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 500;
}

.redirect-link:hover {
    text-decoration: underline;
}

.fatura-textarea {
    padding: 16px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--font-primary);
    width: 100%;
    min-height: 100px;
    resize: vertical;
}

.fatura-textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

/* Add these new styles for history page */
.history-section {
    margin-top: 20px;
    width: 100%;
}

.history-list {
    width: 100%;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
}

.history-header {
    display: grid;
    grid-template-columns: 0.8fr 1fr 2fr 1fr 0.5fr 0.7fr 1.2fr 0.8fr;
    gap: 10px;
    padding: 16px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #E5E5E5;
    font-weight: 400;
    font-size: 18px;
}

.history-item {
    display: grid;
    grid-template-columns: 0.8fr 1fr 2fr 1fr 0.5fr 0.7fr 1.2fr 0.8fr;
    gap: 10px;
    padding: 16px;
    border-bottom: 1px solid #E5E5E5;
    align-items: center;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.history-item:last-child {
    border-bottom: none;
}

.history-item:hover {
    background-color: #f8f8f8;
}

.download-status {
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-status .fa-check {
    color: #4CAF50;
}

.download-status .fa-times {
    color: #f44336;
}

.bestcase-status {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bestcase-status .fa-check {
    color: #4CAF50;
}

.bestcase-status .fa-times {
    color: #ccc;
}

.previous-version {
    color: #666;
    font-size: 13px;
}

.btn-view {
    background-color: var(--primary-yellow);
    color: var(--white);
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: var(--font-primary);
}

.btn-view:hover {
    background-color: #e6a600;
}

/* Add these media queries for history page responsiveness */
@media (max-width: 1024px) {
    .history-header, .history-item {
        font-size: 13px;
        padding: 12px;
    }
    
    .btn-view {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .history-header, .history-item {
        grid-template-columns: 0.8fr 1fr 2fr 1fr 0.5fr 0.7fr 1.2fr 0.8fr;
        font-size: 12px;
        padding: 10px;
    }
    
    .previous-version {
        font-size: 11px;
    }
}

@media (max-width: 640px) {
    .history-list {
        overflow-x: auto;
    }
    
    .history-header, .history-item {
        min-width: 900px;
    }
}

/* History page specific container styles */
.history-container {
    width: 1222px;
    min-height: 839px;
    height: auto;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    padding: 40px;
}

.history-box {
    width: 100%;
    max-width: 1100px;
    text-align: center;
}

/* Add these styles for the authenticated nav buttons */
.nav-buttons .btn-nav {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    transition: color 0.3s ease;
}

.nav-buttons .btn-nav:hover,
.nav-buttons .btn-nav.active {
    color: var(--primary-yellow);
}

.nav-buttons .separator {
    color: var(--text-dark);
    opacity: 0.5;
    margin: 0 8px;
}

/* Stats Section Styles */
.stats-section {
    margin-top: 40px;
}

.stats-section h2 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.stat-value {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Usage page specific container styles */
.usage-container {
    width: 1222px;
    min-height: 839px;
    height: auto;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    padding: 40px;
}

.usage-box {
    width: 100%;
    max-width: 800px;
    text-align: left;
}

/* Add these media queries for usage page responsiveness */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-card {
        padding: 16px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .stat-value {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Brand List Styles */
.brand-list {
    display: flex;
    flex-direction: column;
    max-height: 300px;
    overflow-y: auto;
    margin: 16px 0;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
}

.brand-option {
    position: relative;
}

.brand-option:not(:last-child) {
    border-bottom: 1px solid #E5E5E5;
}

.brand-option input[type="radio"] {
    display: none;
}

.brand-option label {
    display: block;
    padding: 16px;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: var(--text-dark);
}

.brand-option input[type="radio"]:checked + label {
    border-left-color: var(--primary-yellow);
    background-color: #f8f8f8;
    font-weight: 500;
}

.brand-option label:hover {
    background-color: #f8f8f8;
}

/* Scrollbar styling for brand list */
.brand-list::-webkit-scrollbar {
    width: 6px;
}

.brand-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.brand-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.brand-list::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Add these styles for project selection page */
.selected-brand {
    text-align: left;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E5E5E5;
}

.brand-label {
    font-size: 12px;
    color: #666;
    display: block;
    margin-bottom: 4px;
}

.selected-brand h2 {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-buttons {
    display: flex;
    gap: 16px;
}

.btn-back {
    background-color: #f5f5f5;
    color: var(--text-dark);
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: var(--font-primary);
    flex: 1;
}

.btn-back:hover {
    background-color: #e5e5e5;
}

/* Add to responsive section */
@media (max-width: 768px) {
    .form-buttons {
        flex-direction: column;
    }
    
    .selected-brand {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .selected-brand h2 {
        font-size: 16px;
    }
}

/* Project List Styles */
.project-list {
    display: flex;
    flex-direction: column;
    max-height: 300px;
    overflow-y: auto;
    margin: 16px 0;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
}

.project-option {
    position: relative;
}

.project-option:not(:last-child) {
    border-bottom: 1px solid #E5E5E5;
}

.project-option input[type="radio"] {
    display: none;
}

.project-option label {
    display: block;
    padding: 16px;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: var(--text-dark);
}

.project-option input[type="radio"]:checked + label {
    border-left-color: var(--primary-accent);
    background-color: #f8f8f8;
    font-weight: 500;
}

.project-option label:hover {
    background-color: #f8f8f8;
}

/* Scrollbar styling for project list */
.project-list::-webkit-scrollbar {
    width: 6px;
}

.project-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.project-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.project-list::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Content Type Selection Styles */
.content-type-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 16px 0;
}

.content-type-option {
    position: relative;
}

.content-type-option input[type="radio"] {
    display: none;
}

.content-type-option label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.content-type-option label:hover {
    border-color: var(--primary-yellow);
    background-color: #FFF9E6;
}

.content-type-option input[type="radio"]:checked + label {
    border-color: var(--primary-yellow);
    background-color: #FFF9E6;
}

.type-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.type-info {
    text-align: left;
}

.type-title {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.type-desc {
    display: block;
    font-size: 12px;
    color: #666;
}

/* Content Input Page Styles */
.content-input-box {
    width: 800px;
    text-align: left;
    padding: 40px;
}

.content-input-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.content-input-form .form-group {
    margin-bottom: 24px;
    text-align: left;
}

.content-input-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.content-input-form .form-group input[type="text"],
.content-input-form .form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--font-primary);
}

.content-input-form .form-group input[type="text"] {
    height: 50px;  /* Make the input box a bit taller */
}

.content-input-form .form-group textarea {
    resize: vertical;
    min-height: 200px;
}

.content-input-form .form-group input:focus,
.content-input-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

/* Specific styling for the first textarea (speaker/audience description) */
.content-input-form #inputinfo1 {
    min-height: 60px;
    resize: vertical;
}

/* Specific styling for key message textareas */
.content-input-form .message-box textarea {
    min-height: 60px;
    resize: vertical;
}

/* Key Message Entry Styles */
.content-input-form .key-messages {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.content-input-form .message-box {
    position: relative;
    padding-left: 40px;
}

.content-input-form .message-number {
    position: absolute;
    left: 0;
    top: 16px;
    width: 28px;
    height: 28px;
    background-color: var(--primary-yellow);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

/* Update the selected info styles */
.selected-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E5E5E5;
}

.info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.info-label {
    font-size: 12px;
    color: #666;
    margin: 0;
    min-width: 120px;
}

.info-item h2 {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Content Display Styles */
.content-display {
    margin-bottom: 24px;
}

.content-area {
    width: 100%;
    min-height: 300px;
    padding: 16px 24px 24px 24px;
    background-color: #f8f8f8;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.8;
}

/* Action Section Styles */
.action-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feedback-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.feedback-input {
    width: 100%;
    padding: 16px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--font-primary);
    resize: vertical;
    min-height: 60px;
}

.feedback-input:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.other-actions {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.btn-action {
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    flex: 1;
}

.btn-feedback {
    background-color: var(--primary-yellow);
    color: var(--white);
}

.btn-feedback:hover {
    background-color: #e6a600;
}

.btn-qa {
    background-color: #f5f5f5;
    color: var(--text-dark);
}

.btn-qa:hover {
    background-color: #e5e5e5;
}

.btn-bestcase {
    background-color: #4CAF50;
    color: var(--white);
}

.btn-bestcase:hover {
    background-color: #45a049;
}

.btn-download {
    background-color: #1e3a8a;
    color: var(--white);
}

.btn-download:hover {
    background-color: #1e40af;
}

@media (max-width: 768px) {
    .content-area {
        padding: 16px;
        font-size: 13px;
    }
    
    .action-section {
        gap: 20px;
    }
    
    .feedback-section {
        padding: 16px;
    }
    
    .other-actions {
        flex-direction: column;
    }
    
    .btn-action {
        width: 100%;
        padding: 12px;
        font-size: 13px;
    }
    
    .feedback-input {
        min-height: 50px;
    }
}

.previous-versions {
    margin: 24px 0;
    padding: 24px 0;
    border-top: 1px solid #E5E5E5;
}

.previous-versions h2 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.previous-versions a {
    display: block;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
}

.previous-versions a:hover {
    color: var(--primary-yellow);
}

/* Question Section Styles */
.question-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.question-box {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
}

.question-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.question-number {
    width: 28px;
    height: 28px;
    background-color: var(--primary-yellow);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
}

.question-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 4px;
    flex: 1;
}

.question-box textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--font-primary);
    resize: vertical;
    min-height: 60px;
    background-color: var(--white);
}

.question-box textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

@media (max-width: 768px) {
    .question-box {
        padding: 16px;
    }
    
    .question-text {
        font-size: 13px;
    }
}

/* Not Auth Page Specific Styles */
.not-auth-box {
    width: 400px !important;  /* Override the default width */
    text-align: center !important;  /* Center align just this box */
}

.not-auth-box .form-buttons {
    justify-content: center;
}

.not-auth-box .btn-submit {
    width: auto;
    min-width: 200px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

/* Loading Overlay Styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(128, 128, 128, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-overlay.active {
    display: flex;
}

.loading-overlay img {
    width: 400px;
    height: 400px;
    object-fit: contain;
}

/* Brand Management Styles */
.brand-management {
    margin: 24px 0;
}

.brand-management table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.brand-management th,
.brand-management td {
    padding: 16px;
    text-align: left;
    border: 1px solid #E5E5E5;
}

.brand-management th {
    background-color: #f8f8f8;
    font-weight: 400;
    font-size: 18px;
    color: var(--text-dark);
}

.brand-management td {
    font-size: 14px;
    color: var(--text-dark);
}

.brand-management button {
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
}

/* Projects List Styles */
.projects-list {
    margin: 16px 0;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    overflow: hidden;
}

.projects-list table {
    width: 100%;
    border-collapse: collapse;
}

.projects-list th,
.projects-list td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #E5E5E5;
}

.projects-list th {
    background-color: #f8f8f8;
    font-weight: 400;
    font-size: 18px;
}

/* Delete Button Style */
.btn-delete {
    background-color: #dc3545;
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    flex: 1;
}

.btn-delete:hover {
    background-color: #c82333;
}

/* Admin Dashboard Cards */
.dashboard-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}

.dashboard-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 25px;
    width: calc(33.33% - 20px);
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.dashboard-card h2 {
    font-family: var(--font-primary);
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.card-description {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #666;
    flex-grow: 1;
}

.btn-card {
    background-color: var(--primary-yellow);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: background-color 0.3s ease;
    font-family: var(--font-primary);
}

.btn-card:hover {
    background-color: #e6a600;
}

/* Admin Tables */
.user-management, .bestcase-list, .prompt-list {
    margin-top: 30px;
    width: 100%;
}

.user-management table, 
.bestcase-list table, 
.prompt-list table {
    width: 100%;
    margin-top: 15px;
    border-collapse: collapse;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-family: var(--font-primary);
}

.user-management th, 
.bestcase-list th, 
.prompt-list th {
    background-color: #f5f5f5;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-family: var(--font-primary);
}

.user-management td, 
.bestcase-list td, 
.prompt-list td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    font-family: var(--font-primary);
}

.user-management tr:last-child td, 
.bestcase-list tr:last-child td, 
.prompt-list tr:last-child td {
    border-bottom: none;
}

.user-management tr:hover, 
.bestcase-list tr:hover, 
.prompt-list tr:hover {
    background-color: #f9f9f9;
}

.status-active {
    color: #2ea44f;
    font-weight: 500;
}

.status-inactive {
    color: #cb2431;
    font-weight: 500;
}

/* Form Styles for Admin Pages */
.bestcase-form, .prompt-form {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 25px;
    margin-bottom: 30px;
    width: 100%;
}

.bestcase-form h2, .prompt-form h2 {
    font-family: var(--font-primary);
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-family: var(--font-primary);
}

.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 16px;
}

.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    font-family: var(--font-primary);
    font-size: 15px;
}

/* Category/Prompt Type Tabs */
.category-tabs, .prompt-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.category-tab, .prompt-tab {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    background: none;
    color: #666;
    font-weight: 500;
    font-size: 16px;
    font-family: var(--font-primary);
}

.category-tab.active, .prompt-tab.active {
    color: var(--primary-yellow);
    border-bottom: 3px solid var(--primary-yellow);
}

.category-tab:hover, .prompt-tab:hover {
    color: #333;
    background-color: transparent;
}

.category-content, .prompt-content {
    display: none;
    width: 100%;
}

.category-content.active, .prompt-content.active {
    display: block;
}

/* Action Buttons - updated */
.btn-verify, .btn-unverify {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

.btn-verify {
    background-color: #2ea44f;
    color: white;
}

.btn-verify:hover {
    background-color: #269f42;
}

.btn-unverify {
    background-color: #cb2431;
    color: white;
}

.btn-unverify:hover {
    background-color: #b21e29;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .admin-wrapper {
        padding: 30px 40px;
    }
    
    .dashboard-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .admin-wrapper {
        padding: 20px;
    }
    
    .dashboard-card {
        width: 100%;
    }
    
    .user-management table, 
    .bestcase-list table, 
    .prompt-list table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .category-tabs, .prompt-tabs {
        flex-wrap: wrap;
    }
    
    .category-tab, .prompt-tab {
        flex-grow: 1;
        text-align: center;
        padding: 8px 10px;
        font-size: 14px;
    }
}

/* Admin specific styles - updated */
.admin-wrapper {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 1280px;
    padding: 40px 60px;
}

.admin-wrapper h1 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.admin-description {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #666;
}

/* Content Criteria Form Styles */
.content-criteria-form {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 25px;
    margin-bottom: 30px;
    width: 100%;
}

.content-criteria-form h2 {
    font-family: var(--font-primary);
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-description {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #666;
}

.content-criteria-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.5;
}

.content-criteria-form textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

/* Bestcases Section */
.bestcases-section {
    margin-top: 16px;
    margin-bottom: 24px;
}

.bestcase-item {
    margin-bottom: 24px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
}

.bestcase-item label {
    display: block;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.bestcase-item textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    background-color: white;
}

.bestcase-item textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 2px rgba(252, 186, 3, 0.2);
}

.form-hint {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #666;
    font-style: italic;
}

#updatebestcases {
    margin-top: 16px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .bestcase-item {
        padding: 16px;
        margin-bottom: 20px;
    }
    
    .bestcase-item textarea {
        min-height: 100px;
    }
}

/* Generated Content Specific Styles */
.content-area .generated-content {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
}

/* Admin Users Table Specific Styles */
.user-management table {
    table-layout: fixed;
    width: 100%;
}

.user-management th:nth-child(1) { /* Kullanıcı Adı */
    width: 15%;
}

.user-management th:nth-child(2) { /* E-posta */
    width: 15%;
}

.user-management th:nth-child(3) { /* Kullanıcı Tipi */
    width: 10%;
}

.user-management th:nth-child(4) { /* Markalar */
    width: 25%;
}

.user-management th:nth-child(5) { /* Kayıt Tarihi */
    width: 12%;
}

.user-management th:nth-child(6) { /* Durumu */
    width: 10%;
}

.user-management th:nth-child(7) { /* İşlem */
    width: 13%;
}

.user-management td {
    vertical-align: top;
    padding: 8px 12px;
}

/* Override default paragraph styles within generated content */
.content-area .generated-content p {
    font-size: 16px !important;
    font-weight: 400 !important;
    margin: 0 0 12px 0 !important;
    line-height: 1.6 !important;
}

/* Style the title paragraph specifically */
.content-area .generated-content p:first-child {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    margin-bottom: 16px !important;
}

/* Override default label styles within generated content */
.content-area .generated-content label {
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: var(--text-dark) !important;
    display: inline !important;
    margin: 0 !important;
}

/* Remove excessive spacing */
.content-area .generated-content div {
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure proper spacing between content blocks */
.content-area .generated-content p:not(:last-child) {
    margin-bottom: 12px !important;
}

/* Style the last paragraph (no special styling needed) */
.content-area .generated-content p:last-child {
    margin-bottom: 0 !important;
}

/* Mobile responsiveness for generated content */
@media (max-width: 768px) {
    .content-area .generated-content p {
        font-size: 14px !important;
    }
    
    .content-area .generated-content p:first-child {
        font-size: 18px !important;
        margin-bottom: 14px !important;
    }
    
    .content-area .generated-content label {
        font-size: 14px !important;
    }
}

.usage-container h1,
.history-container h1 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-yellow);
    font-weight: 600;
}

/* Accent styles */
.btn-accent {
    background-color: var(--primary-accent);
    color: var(--white);
}
.btn-accent:hover {
    background-color: #7086c6;
}

.title-accent {
    color: var(--primary-accent) !important;
}

.title-dark {
    color: var(--text-dark) !important;
}

/* Edit button inside projects list */
.projects-list button {
    background-color: var(--primary-accent);
    color: var(--white);
    transition: background-color 0.3s ease;
}
.projects-list button:hover {
    background-color: #7086c6;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.page-link {
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
    background-color: #f5f5f5;
    color: var(--text-dark);
    font-size: 14px;
    transition: background-color 0.3s ease;
}
.page-link:hover {
    background-color: #e5e5e5;
}
.page-link.active {
    background-color: var(--primary-yellow);
    color: var(--white);
}
.page-edge {
    font-weight: 600;
    background-color: #f5f5f5;
}
.page-edge-left {
    border-right: 1px solid #ccc;
    padding-right: 14px;
}
.page-edge-right {
    border-left: 1px solid #ccc;
    padding-left: 14px;
}

/* =============================================================
   Content Category Specific Styles
   ============================================================= */

/* Basın Bülteni Styles */
.content-area .generated-content.basinbulteni p:first-child {
    font-family: var(--font-primary) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 0 0 16px 0 !important;
}

.content-area .generated-content.basinbulteni label:first-of-type {
    font-family: var(--font-primary) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    display: block !important;
    margin: 0 0 12px 0 !important;
}

/* Subsequent headings inside the bulletin */
.content-area .generated-content.basinbulteni p:not(:first-child) {
    font-family: var(--font-primary) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    margin: 12px 0 12px 0 !important;
}

/* Regular paragraph text */
.content-area .generated-content.basinbulteni label:not(:first-of-type) {
    font-family: var(--font-primary) !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    display: block !important;
    margin: 0 0 12px 0 !important;
}

/* İç İletişim & Konuşma Metni Styles */
.content-area .generated-content.iciletisim p,
.content-area .generated-content.konusmametni p {
    font-family: var(--font-primary) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    margin: 0 0 12px 0 !important;
}

.content-area .generated-content.iciletisim label,
.content-area .generated-content.konusmametni label {
    font-family: var(--font-primary) !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    display: block !important;
    margin: 0 0 12px 0 !important;
}
