/* File Circle Templates - Shared Styles */

/* General Page Layout */
.fc-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.fc-header {
    text-align: center;
    margin-bottom: 40px;
}

.fc-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.fc-page-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.fc-page-description {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Upload Section */
.fc-upload-section {
    max-width: 600px;
    margin: 0 auto 60px;
}

.fc-adsense {
    margin: 20px 0;
}

.fc-upload-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.fc-upload-box {
    position: relative;
    width: 100%;
    height: 360px;
    border: 2px dashed #e0e0e0;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 360px;
    margin: 30px auto;
}

.fc-upload-box:hover {
    border-color: #02934a;
    background-color: rgba(2, 147, 74, 0.04);
}

.fc-upload-inner {
    text-align: center;
    padding: 20px;
}

.fc-upload-icon {
    font-size: 48px;
    width: 70px;
    height: 70px;
    line-height: 65px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #02934a;
    margin: 0 auto 20px;
    border: 2px solid #e0e0e0;
}

.fc-upload-text {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.fc-upload-or {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.fc-max-size {
    font-size: 13px;
    color: #999;
}

/* Circular Progress Animation */
.fc-progress-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
}

.fc-progress-circle {
    position: relative;
    transform: rotate(-90deg);
}

.fc-progress-circle-bg {
    stroke: #e0e0e0;
}

.fc-progress-circle-path {
    stroke: #02934a;
    transition: stroke-dashoffset 0.5s ease;
}

.fc-progress-text {
    position: absolute;
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

/* Features Section */
.fc-features-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.fc-feature {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.fc-feature:hover {
    transform: translateY(-5px);
}

.fc-feature-icon {
    font-size: 24px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: rgba(2, 147, 74, 0.1);
    color: #02934a;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Authentication Forms */
.fc-auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../assets/image/loginbg.png') no-repeat center center;
    background-size: cover;
    padding: 20px;
}

.fc-auth-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    padding: 30px 20px;
    text-align: left;
}

.fc-auth-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.fc-auth-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.fc-auth-form input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.fc-auth-form input:focus {
    border-color: #02934a;
    outline: none;
}

.fc-auth-btn {
    width: 100%;
    padding: 12px;
    background: #02934a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.fc-auth-btn:hover {
    background: #01705c;
}

.fc-auth-links {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.fc-auth-links a {
    color: #02934a;
    text-decoration: none;
    margin: 0 5px;
}

.fc-auth-divider {
    margin: 25px 0;
    text-align: center;
    position: relative;
}

.fc-auth-divider:before,
.fc-auth-divider:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ddd;
}

.fc-auth-divider:before {
    left: 0;
}

.fc-auth-divider:after {
    right: 0;
}

.fc-google-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.fc-google-btn:hover {
    background: #f5f5f5;
}

.fc-google-btn img {
    margin-right: 10px;
    height: 18px;
}

/* Dashboard Styles */
.fc-dashboard-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin: 30px 0;
}

.fc-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.fc-dashboard-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.fc-dashboard-filters {
    display: flex;
    gap: 10px;
}

.fc-dashboard-filter {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 14px;
    color: #555;
}

.fc-dashboard-filter.active {
    background: #02934a;
    color: white;
    border-color: #02934a;
}

.fc-dashboard-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.fc-dashboard-table th,
.fc-dashboard-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.fc-dashboard-table th {
    background: #f9f9f9;
    font-weight: 500;
    color: #333;
}

.fc-dashboard-table tr:hover {
    background-color: #f9f9f9;
}

.fc-dashboard-table td a {
    color: #02934a;
    text-decoration: none;
}

.fc-dashboard-table td a.fc-delete-upload {
    color: #f44336;
}

.fc-dashboard-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.fc-dashboard-pagination a {
    min-width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.fc-dashboard-pagination a.active {
    background: #02934a;
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .fc-page-title {
        font-size: 28px;
    }
    
    .fc-page-description {
        font-size: 16px;
    }
    
    .fc-upload-box {
        height: 280px;
        max-width: 280px;
    }
    
    .fc-features-section {
        gap: 15px;
    }
    
    .fc-feature {
        min-width: 150px;
        padding: 15px;
    }
    
    .fc-feature-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
    }
    
    .fc-dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .fc-dashboard-table {
        font-size: 14px;
    }
    
    .fc-dashboard-table th,
    .fc-dashboard-table td {
        padding: 10px 8px;
    }
}
