/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: #000000;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    font-weight: 500;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #545b62;
}

.btn-success {
    background-color: #28a745;
    color: #ffffff;
}

.btn-success:hover {
    background-color: #1e7e34;
}

.btn-danger {
    background-color: #dc3545;
    color: #ffffff;
}

.btn-danger:hover {
    background-color: #bd2130;
}

.btn-small {
    padding: 5px 10px;
    font-size: 0.875rem;
}

/* Forms */
.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

input:focus, textarea:focus, select:focus {
    outline: 2px solid #007bff;
    outline-offset: 0;
    border-color: #007bff;
}

small {
    display: block;
    margin-top: 0.25rem;
    color: #6c757d;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.table th, .table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.table-responsive {
    overflow-x: auto;
}

/* Tooltips */
[title] {
    position: relative;
    cursor: help;
}

[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: normal;
    max-width: 300px;
    word-wrap: break-word;
    z-index: 1000;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

[title]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
    margin-bottom: -5px;
}

/* Messages */
.error-message, .success-message {
    padding: 15px;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Message Content */
.message-content {
    white-space: pre-wrap;
    word-wrap: break-word;
    max-width: 100%;
}

/* Header - User */
.user-header {
    background-color: #ffffff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid #e5e7eb;
}

.user-header .header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-header .header-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-logo {
    width: 45px;
    height: 45px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
}

.brand-line {
    width: 20px;
    height: 2px;
    background: #1a1a1a;
}

.brand-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.user-header .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-line {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    display: block;
}

.user-header .header-nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
    margin: 0;
}

.user-header .header-nav ul li a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.user-header .header-nav ul li a:hover {
    border-bottom-color: #1a1a1a;
}

/* Footer - User */
.user-footer {
    background-color: #1a1a1a;
    padding: 2rem 0;
    margin-top: 0;
    text-align: center;
    color: #9ca3af;
}

.user-footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding-top: 80px; /* Space for fixed header */
}

/* Search Container */
.search-container {
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
}

.search-form {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.instructions {
    background-color: #e9ecef;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: left;
}

.instructions ul {
    padding-left: 1.5rem;
}

.instructions li {
    margin-bottom: 0.5rem;
}

/* Creative Bold Hero Section */
.creative-hero {
    position: relative;
    min-height: calc(100vh - 80px);
    background: #ffffff;
    overflow: hidden;
    padding: 4rem 0;
}

/* Decorative Circles */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid;
}

.deco-circle-1 {
    width: 120px;
    height: 120px;
    border-color: #3b82f6;
    top: 10%;
    right: 15%;
}

.deco-circle-2 {
    width: 80px;
    height: 80px;
    border-color: #ec4899;
    bottom: 20%;
    left: 5%;
    background: #ec4899;
}

.deco-circle-3 {
    width: 60px;
    height: 60px;
    border-color: #1a1a1a;
    top: 60%;
    right: 8%;
}

/* Theme Switcher */
.theme-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
}

.theme-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.theme-dots {
    display: flex;
    gap: 10px;
}

.theme-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    padding: 0;
}

.theme-dot-blue {
    background: #3b82f6;
}

.theme-dot-pink {
    background: #ec4899;
}

.theme-dot-dark {
    background: #1a1a1a;
}

.theme-dot.active {
    border-color: #1a1a1a;
    transform: scale(1.15);
}

.theme-dot-dark.active {
    border-color: #6b7280;
}

.creative-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.creative-left {
    text-align: left;
}

.creative-title {
    margin: 0;
}

.title-main {
    display: block;
    font-size: 6rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
    letter-spacing: -3px;
    font-family: 'Poppins', sans-serif;
}

.dot-accent {
    position: relative;
}

.dot-accent::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: #ec4899;
    border-radius: 50%;
}

.title-line {
    display: block;
    width: 80px;
    height: 4px;
    background: #1a1a1a;
    margin: 2rem 0;
}

.title-sub {
    display: block;
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.creative-right {
    display: flex;
    justify-content: center;
}

.search-card {
    background: #f8f9fa;
    border-radius: 30px;
    padding: 3rem;
    max-width: 450px;
    width: 100%;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.card-badge i {
    color: #ec4899;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.card-desc {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.creative-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.creative-input-wrap {
    position: relative;
}

.creative-input {
    width: 100%;
    background: #ffffff;
    border: 2px solid #636363;
    border-radius: 12px;
    padding: 1.2rem 1rem;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
}

.creative-input:focus {
    outline: none;
    border-color: #3b82f6;
}

.creative-input::placeholder {
    color: #9ca3af;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #3b82f6;
}

.creative-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.creative-btn i {
    font-size: 1rem;
}

/* Features Row */
.features-row {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 90%;
    margin: 5rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.feature-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #e5e7eb;
    font-family: 'Poppins', sans-serif;
}

.feature-text strong {
    display: block;
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.feature-text span {
    font-size: 0.9rem;
    color: #6b7280;
}

.feature-divider {
    width: 60px;
    height: 2px;
    background: #e5e7eb;
}

/* Info Strip */
.info-strip {
    background: #1a1a1a;
    padding: 2rem 0;
    margin-top: 0;
    border-radius: 16px;
}

.info-strip-content {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-strip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
}

.strip-icon {
    width: 45px;
    height: 45px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.strip-text {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive Creative Hero */
@media (max-width: 992px) {
    .creative-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .creative-left {
        text-align: center;
    }
    
    .title-main {
        font-size: 4rem;
    }
    
    .title-sub {
        font-size: 2.5rem;
    }
    
    .title-line {
        margin: 1.5rem auto;
    }
    
    .deco-circle-1,
    .deco-circle-3 {
        display: none;
    }
    
    .deco-circle-2 {
        width: 50px;
        height: 50px;
        bottom: auto;
        top: 5%;
        left: 10%;
    }
}

@media (max-width: 576px) {
    .creative-hero {
        padding: 2rem 0;
    }
    
    .title-main {
        font-size: 3rem;
        letter-spacing: -1px;
    }
    
    .title-sub {
        font-size: 1.8rem;
    }
    
    .search-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .features-row {
        flex-direction: column;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .feature-divider {
        width: 2px;
        height: 30px;
    }
    
    .info-strip-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-strip-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .theme-switcher {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Certificate View */
.certificate-card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 2rem;
    margin: 2rem 0;
}

.certificate-header {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.certificate-header h3 {
    margin-bottom: 0.5rem;
}

.certificate-id {
    font-weight: 600;
    color: #6c757d;
}

.certificate-info .info-row {
    display: flex;
    margin-bottom: 1rem;
}

.certificate-info .label {
    font-weight: 600;
    min-width: 120px;
    color: #495057;
}

.certificate-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Contact Page */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    text-align: center;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin: 2rem 0;
}

/* Admin Login */
.admin-login-body {
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.admin-login-container {
    width: 100%;
    max-width: 400px;
}

.admin-login-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 2rem;
}

.admin-login-card h1 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.admin-login-form {
    margin-top: 1.5rem;
}

/* Admin Header */
.admin-header {
    background-color: #28a745;
    color: #ffffff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.admin-header .header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header .header-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.admin-header .header-brand i {
    font-size: 1.5rem;
}

.admin-header .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
}

.admin-header .header-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
}

.admin-header .header-nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.admin-header .header-nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Admin Footer */
.admin-footer {
    background-color: #343a40;
    color: #e9ecef;
    padding: 2rem 0;
    margin-top: 2rem;
    text-align: center;
}

/* Dashboard */
.dashboard-stats {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.stat-card h3 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.dashboard-sections {
    margin: 2rem 0;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.recent-certificates {
    margin-top: 2rem;
}

/* Certificate Form */
.certificate-form {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Saved Certificates */
.search-box {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.certificates-table th, .certificates-table td {
    vertical-align: middle;
}

.actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.no-certificates {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin: 2rem 0;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-info {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .certificate-actions, .form-actions, .action-buttons {
        flex-direction: column;
    }
    
    .dashboard-stats {
        flex-direction: column;
    }
    
    .pagination {
        flex-direction: column;
        text-align: center;
    }
    
    /* Mobile Header - User */
    .user-header .header-brand {
        gap: 0.8rem;
    }
    
    .brand-logo {
        width: 38px;
        height: 38px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .brand-line {
        width: 25px;
    }
    
    .brand-text {
        font-size: 0.75rem;
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .user-header .mobile-menu-toggle {
        display: flex;
    }
    
    .user-header .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        border-bottom: 2px solid #e5e7eb;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .user-header .header-nav.active {
        max-height: 500px;
    }
    
    .user-header .header-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    
    .user-header .header-nav ul li {
        border-bottom: 1px solid #e5e7eb;
    }
    
    .user-header .header-nav ul li:last-child {
        border-bottom: none;
    }
    
    .user-header .header-nav ul li a {
        padding: 1rem 1.5rem;
        display: block;
        border-bottom: none;
    }
    
    /* Mobile Header - Admin */
    .admin-header .header-brand {
        font-size: 1rem;
    }
    
    .admin-header .header-brand .brand-text {
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .admin-header .mobile-menu-toggle {
        display: block;
    }
    
    .admin-header .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #28a745;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .admin-header .header-nav.active {
        max-height: 500px;
    }
    
    .admin-header .header-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
    }
    
    .admin-header .header-nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .admin-header .header-nav ul li:last-child {
        border-bottom: none;
    }
    
    .admin-header .header-nav ul li a {
        padding: 1rem 1.5rem;
        display: flex;
        border-radius: 0;
    }
    
    .admin-header .header-nav ul li a:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }
}


/* View Page Styles */
.view-page {
    min-height: calc(100vh - 160px);
    background: #f8f9fa;
    padding: 3rem 0;
}

.view-container {
    max-width: 700px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.view-header {
    text-align: center;
    margin-bottom: 2rem;
}

.view-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.view-badge i {
    color: #22c55e;
}

.view-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.view-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    overflow: hidden;
}

.view-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-bottom: 2px solid #e5e7eb;
    background: #fafafa;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: #1a1a1a;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    flex-shrink: 0;
}

.card-title-wrap h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.3rem 0;
}

.card-id {
    font-size: 0.9rem;
    color: #6b7280;
    font-family: monospace;
    background: #e5e7eb;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
}

.view-card-body {
    padding: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-box {
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.info-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.info-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.info-notes {
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
}

.notes-text {
    margin: 0.5rem 0 0 0;
    color: #374151;
    line-height: 1.6;
}

.view-card-footer {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    border-top: 2px solid #e5e7eb;
    background: #fafafa;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: 'Poppins', sans-serif;
}

.view-btn-primary {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
}

.view-btn-dark {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.view-btn-outline {
    background: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.view-deco {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.deco-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.deco-blue {
    background: #3b82f6;
}

.deco-pink {
    background: #ec4899;
}

.deco-dark {
    background: #1a1a1a;
}

/* View Error State */
.view-error {
    max-width: 500px;
    width: 90%;
    margin: 3rem auto;
    text-align: center;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    padding: 3rem 2rem;
}

.error-icon {
    width: 80px;
    height: 80px;
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #ef4444;
}

.view-error h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.8rem 0;
}

.view-error p {
    color: #6b7280;
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

/* View Page Responsive */
@media (max-width: 768px) {
    .view-page {
        padding: 2rem 0;
    }
    
    .view-title {
        font-size: 1.8rem;
    }
    
    .view-card-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-title-wrap h2 {
        font-size: 1.3rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .view-card-body {
        padding: 1.5rem;
    }
    
    .view-card-footer {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .view-btn {
        width: 100%;
    }
}


/* Color Theme Variations */

/* Blue Theme */
.creative-hero.theme-blue,
.main-content.theme-blue {
    background: #eff6ff;
}

body.theme-blue .user-header {
    background: #ffffff;
    border-bottom-color: #bfdbfe;
}

body.theme-blue .user-header .brand-logo {
    background: #3b82f6;
}

body.theme-blue .user-header .brand-line {
    background: #3b82f6;
}

body.theme-blue .user-header .header-nav ul li a {
    color: #3b82f6;
}

body.theme-blue .user-header .header-nav ul li a:hover {
    border-bottom-color: #3b82f6;
}

body.theme-blue .user-header .menu-line {
    background: #3b82f6;
}

body.theme-blue .user-footer {
    background: #1e40af;
}

body.theme-blue .info-strip {
    background: #1e40af;
}

.creative-hero.theme-blue .search-card {
    background: #dbeafe;
    border-color: #bfdbfe;
}

.creative-hero.theme-blue .creative-btn {
    background: #3b82f6;
}

.creative-hero.theme-blue .card-badge {
    background: #3b82f6;
}

.creative-hero.theme-blue .card-badge i {
    color: #bfdbfe;
}

.creative-hero.theme-blue .dot-accent::after {
    background: #3b82f6;
}

.creative-hero.theme-blue .deco-circle-1 {
    border-color: #3b82f6;
}

.creative-hero.theme-blue .deco-circle-2 {
    background: #3b82f6;
    border-color: #3b82f6;
}

.creative-hero.theme-blue .deco-circle-3 {
    border-color: #1e40af;
}

.creative-hero.theme-blue .title-line {
    background: #3b82f6;
}

.creative-hero.theme-blue .creative-input {
    border-color: #bfdbfe;
}

.creative-hero.theme-blue .creative-input:focus {
    border-color: #3b82f6;
}

.creative-hero.theme-blue .theme-switcher {
    border-top-color: #bfdbfe;
}

.creative-hero.theme-blue .strip-icon {
    background: #3b82f6;
}

.creative-hero.theme-blue .feature-num {
    color: #bfdbfe;
}

/* Pink Theme */
.creative-hero.theme-pink,
.main-content.theme-pink {
    background: #fdf2f8;
}

body.theme-pink .user-header {
    background: #ffffff;
    border-bottom-color: #fbcfe8;
}

body.theme-pink .user-header .brand-logo {
    background: #ec4899;
}

body.theme-pink .user-header .brand-line {
    background: #ec4899;
}

body.theme-pink .user-header .header-nav ul li a {
    color: #ec4899;
}

body.theme-pink .user-header .header-nav ul li a:hover {
    border-bottom-color: #ec4899;
}

body.theme-pink .user-header .menu-line {
    background: #ec4899;
}

body.theme-pink .user-footer {
    background: #be185d;
}

body.theme-pink .info-strip {
    background: #be185d;
}

.creative-hero.theme-pink .search-card {
    background: #fce7f3;
    border-color: #fbcfe8;
}

.creative-hero.theme-pink .creative-btn {
    background: #ec4899;
}

.creative-hero.theme-pink .card-badge {
    background: #ec4899;
}

.creative-hero.theme-pink .card-badge i {
    color: #fbcfe8;
}

.creative-hero.theme-pink .dot-accent::after {
    background: #ec4899;
}

.creative-hero.theme-pink .deco-circle-1 {
    border-color: #ec4899;
}

.creative-hero.theme-pink .deco-circle-2 {
    background: #ec4899;
    border-color: #ec4899;
}

.creative-hero.theme-pink .deco-circle-3 {
    border-color: #be185d;
}

.creative-hero.theme-pink .title-line {
    background: #ec4899;
}

.creative-hero.theme-pink .creative-input {
    border-color: #fbcfe8;
}

.creative-hero.theme-pink .creative-input:focus {
    border-color: #ec4899;
}

.creative-hero.theme-pink .theme-switcher {
    border-top-color: #fbcfe8;
}

.creative-hero.theme-pink .strip-icon {
    background: #ec4899;
}

.creative-hero.theme-pink .feature-num {
    color: #fbcfe8;
}

/* Dark Theme */
.creative-hero.theme-dark,
.main-content.theme-dark {
    background: #f3f4f6;
}

body.theme-dark .user-header {
    background: #ffffff;
    border-bottom-color: #e5e7eb;
}

body.theme-dark .user-header .brand-logo {
    background: #1a1a1a;
}

body.theme-dark .user-header .brand-line {
    background: #1a1a1a;
}

body.theme-dark .user-header .header-nav ul li a {
    color: #1a1a1a;
}

body.theme-dark .user-header .header-nav ul li a:hover {
    border-bottom-color: #1a1a1a;
}

body.theme-dark .user-header .menu-line {
    background: #1a1a1a;
}

body.theme-dark .user-footer {
    background: #1a1a1a;
}

body.theme-dark .info-strip {
    background: #1a1a1a;
}

.creative-hero.theme-dark .search-card {
    background: #e5e7eb;
    border-color: #d1d5db;
}

.creative-hero.theme-dark .creative-btn {
    background: #1a1a1a;
}

.creative-hero.theme-dark .card-badge {
    background: #1a1a1a;
}

.creative-hero.theme-dark .card-badge i {
    color: #ec4899;
}

.creative-hero.theme-dark .dot-accent::after {
    background: #ec4899;
}

.creative-hero.theme-dark .deco-circle-1 {
    border-color: #3b82f6;
}

.creative-hero.theme-dark .deco-circle-2 {
    background: #ec4899;
    border-color: #ec4899;
}

.creative-hero.theme-dark .deco-circle-3 {
    border-color: #1a1a1a;
}

.creative-hero.theme-dark .title-line {
    background: #1a1a1a;
}

.creative-hero.theme-dark .creative-input {
    border-color: #d1d5db;
}

.creative-hero.theme-dark .creative-input:focus {
    border-color: #1a1a1a;
}

.creative-hero.theme-dark .theme-switcher {
    border-top-color: #d1d5db;
}

.creative-hero.theme-dark .strip-icon {
    background: #3b82f6;
}

.creative-hero.theme-dark .feature-num {
    color: #d1d5db;
}
