/* Google Play Kapalı Test Uygulaması CSS Stilleri */

/* Genel Stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Ana Sayfa */
.hero-section {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    padding: 2rem 0;
    margin-bottom: 40px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.feature-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4285f4;
}

.testimonial-section {
    background-color: #e9ecef;
    padding: 60px 0;
    border-radius: 10px;
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
}

/* Form Stilleri */
.form-section {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control:focus {
    border-color: #4285f4;
    box-shadow: 0 0 0 0.25rem rgba(66, 133, 244, 0.25);
}

/* Dashboard Kartları */
.dashboard-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.dashboard-card-icon {
    font-size: 2.2rem;
    color: #4285f4;
    margin-bottom: 20px;
}

.dashboard-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.dashboard-card-value {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

/* Kredi Paketleri */
.credit-package-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.credit-package-card:hover {
    border-color: #4285f4;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.credit-package-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.credit-package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4285f4;
    margin-bottom: 20px;
}

.credit-package-credits {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #555;
}

/* Test Kartları */
.test-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.test-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
}

.status-pending {
    background-color: #ffc107;
    color: #856404;
}

.status-approved {
    background-color: #34a853;
    color: #155724;
}

.status-rejected {
    background-color: #ea4335;
    color: #721c24;
}

.status-started {
    background-color: #cce5ff;
    color: #004085;
}

.status-completed {
    background-color: #4285f4;
    color: #0c5460;
}

/* Tablo Stilleri */
.table-responsives {
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.custom-table {
    margin-bottom: 0;
}

.custom-table thead {
    background-color: #4285f4;
    color: white;
}

.custom-table th, .custom-table td {
    vertical-align: middle;
}

/* Video Yükleme */
.video-upload-area {
    border: 2px dashed #ccc;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.video-upload-area:hover {
    border-color: #4285f4;
}

.video-upload-icon {
    font-size: 3rem;
    color: #4285f4;
    margin-bottom: 15px;
}

/* Diğer */
.countdown-timer {
    font-size: 1.2rem;
    font-weight: 600;
    color: #dc3545;
}

.badge-credit {
    background-color: #4285f4;
    color: white;
    font-size: 1rem;
    padding: 5px 10px;
    border-radius: 20px;
}

.admin-content-wrapper {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.admin-sidebar {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    min-height: calc(100vh - 56px);
}

.admin-sidebar-menu {
    list-style: none;
    padding-left: 0;
}

.admin-sidebar-menu li {
    margin-bottom: 10px;
}

.admin-sidebar-menu a {
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
}

.admin-sidebar-menu a:hover, .admin-sidebar-menu a.active {
    background-color: #e9ecef;
    color: #4285f4;
}

.admin-sidebar-menu i {
    margin-right: 10px;
    color: #4285f4;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
}

.text-white-50 {
    color: rgba(255,255,255,.5) !important;
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-in-out forwards;
}

/* Footer */
footer a:hover {
    transition: all 0.3s ease;
}

/* Buton stilleri */
.btn-primary {
    background-color: #4285f4;
    border-color: #4285f4;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #3367d6;
    border-color: #3367d6;
}

.btn-outline-primary {
    color: #4285f4;
    border-color: #4285f4;
}

.btn-outline-primary:hover {
    background-color: #4285f4;
    border-color: #4285f4;
}

/* Fiyatlandırma kartları */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Kullanıcı avatar */
.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Ödeme metodları */
.payment-method-card {
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-method-card:hover, .payment-method-card.selected {
    border-color: #4285f4 !important;
    background-color: rgba(66, 133, 244, 0.05);
}

/* Loading spinner */
.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Tooltip */
.custom-tooltip {
    position: relative;
    display: inline-block;
}

.custom-tooltip .tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.custom-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.hover-white:hover {
    color: white !important;
}

.bg-gradient {
    background: linear-gradient(135deg, #4285f4, #34a853);
} 