/* Project Page Styles - Consistent with Main App Design */

/* Base Layout */
.project-page {
    min-height: 100vh;
    background: #f8fafc; 
    padding: 2rem;
    color: #333;
}

.leaderboard-view {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Section */
.project-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.header-text h1 {
    color: #374151;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.project-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

.header-actions {
    flex-shrink: 0;
}

/* New Project Button */
.new-project-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.new-project-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.new-project-button:disabled {
    background: #e2e8f0;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Countdown Banner */
.countdown-banner {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    animation: slideInDown 0.3s ease-out;
}

.countdown-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.countdown-content i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.countdown-content strong {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Content Container */
.project-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Loading, Error, Empty States */
.loading-state,
.error-state,
.empty-state {
    padding: 4rem 2rem;
    text-align: center;
    color: #6b7280;
}

.loading-state {
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
}

.loading-state:before {
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-state {
    color: #dc2626;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    margin: 2rem;
}

.error-state:before {
    content: "⚠️";
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

/* Table Styles */
.project-table-container {
    overflow-x: auto;
}

.project-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.project-table th {
    background: #f8fafc;
    color: #374151;
    font-weight: 600;
    padding: 18px 20px;
    text-align: left;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

.project-table th:first-child {
    border-top-left-radius: 0;
}

.project-table th:last-child {
    border-top-right-radius: 0;
}

.project-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: middle;
}

.project-row {
    transition: all 0.3s ease;
    background: white;
}

.project-row:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Cell-specific styles */
.rank-cell {
    width: 60px;
}

.rank-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    min-width: 50px;
    background: transparent;
    border: 1px solid transparent;
}

.rank-icon i {
    font-size: 16px;
}

.rank-number {
    font-size: 13px;
    font-weight: 700;
}

.rank-1st {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
}

.rank-1st i {
    color: #f59e0b;
}

.rank-2nd {
    color: #9ca3af;
    background: rgba(156, 163, 175, 0.1);
    border-color: rgba(156, 163, 175, 0.3);
}

.rank-2nd i {
    color: #9ca3af;
}

.rank-3rd {
    color: #cd7c2f;
    background: rgba(205, 124, 47, 0.1);
    border-color: rgba(205, 124, 47, 0.3);
}

.rank-3rd i {
    color: #cd7c2f;
}

.rank-top10 {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
}

.rank-top10 i {
    color: #dc2626;
}

.rank-others {
    color: #6b7280;
    background: rgba(107, 114, 128, 0.1);
    border-color: rgba(107, 114, 128, 0.3);
}

.rank-others i {
    color: #6b7280;
}

/* Hover effects */
.rank-icon:hover {
    transform: scale(1.05);
    transition: all 0.2s ease;
}

.rank-1st:hover {
    background: rgba(245, 158, 11, 0.2);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.rank-2nd:hover {
    background: rgba(156, 163, 175, 0.2);
    box-shadow: 0 2px 8px rgba(156, 163, 175, 0.3);
}

.rank-3rd:hover {
    background: rgba(205, 124, 47, 0.2);
    box-shadow: 0 2px 8px rgba(205, 124, 47, 0.3);
}

.rank-top10:hover {
    background: rgba(220, 38, 38, 0.2);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.rank-others:hover {
    background: rgba(107, 114, 128, 0.2);
    box-shadow: 0 2px 8px rgba(107, 114, 128, 0.3);
}

.id-cell {
    width: 60px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.name-cell {
    min-width: 200px;
}

.project-name {
    font-weight: 600;
    color: #374151;
    font-size: 15px;
}

.description-cell {
    min-width: 350px;
    max-width: 500px;
}

.project-description {
    color: #6b7280;
    line-height: 1.4;
}

.website-cell {
    min-width: 200px;
    max-width: 250px;
}

.website-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    word-break: break-all;
    font-size: 13px;
    padding: 4px 8px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.website-link:hover {
    background: rgba(102, 126, 234, 0.2);
    text-decoration: none;
}

.no-website {
    color: #9ca3af;
    font-style: italic;
}

.burned-cell {
    width: 110px;
    text-align: right;
    vertical-align: middle;
}

.burned-amount {
    font-weight: 500;
    color: #6b7280;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.burned-amount i {
    color: #6b7280;
    font-size: 13px;
    opacity: 1;
    margin-right: 6px;
}

.burned-fire-icon {
    margin-right: 8px;
}

.time-cell {
    width: 130px;
    font-size: 13px;
    color: #6b7280;
}

.actions-cell {
    width: 120px;
    text-align: center;
}

/* Details Button */
.details-button {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    margin: 0 auto;
}

.details-button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.details-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Create Project Form */
.create-project-form {
    background: white;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.create-project-form .form-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 24px;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.create-project-form .form-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.create-project-form .form-close-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.create-project-form .form-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Form Layout and Styles */
.create-project-form .project-form {
    padding: 32px;
}

.create-project-form .form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.create-project-form .form-left,
.create-project-form .form-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.create-project-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.create-project-form .form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.create-project-form .form-group label i {
    color: #667eea;
    width: 16px;
    text-align: center;
}

.create-project-form .form-group input,
.create-project-form .form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.create-project-form .form-group input:focus,
.create-project-form .form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.create-project-form .form-group input:disabled,
.create-project-form .form-group textarea:disabled {
    background: #f8fafc;
    color: #6b7280;
    cursor: not-allowed;
}

.create-project-form .form-hint {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Pixel Art Editor */
.create-project-form .pixel-art-editor {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.create-project-form .pixel-art-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.create-project-form .pixel-art-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.create-project-form .size-selector {
    padding: 8px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.create-project-form .size-selector:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.create-project-form .import-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.create-project-form .import-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Pixel String Info */
.create-project-form .pixel-string-info {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    margin-top: 12px;
}

.create-project-form .string-display {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.create-project-form .string-display .label {
    font-weight: 600;
    color: #374151;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.create-project-form .string-display .value {
    font-size: 12px;
    color: #6b7280;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    flex: 1;
}

.create-project-form .copy-container {
    position: relative;
}

.create-project-form .copy-button {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 6px;
    padding: 6px 8px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
}

.create-project-form .copy-button:hover {
    background: rgba(102, 126, 234, 0.2);
}

.create-project-form .copy-tooltip {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #374151;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.create-project-form .copy-tooltip.show {
    opacity: 1;
    visibility: visible;
}

/* Memo Size Indicator */
.create-project-form .memo-size-indicator {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}

.create-project-form .size-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.create-project-form .size-label {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.create-project-form .size-value {
    font-weight: 700;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    background: #e2e8f0;
    color: #374151;
}

.create-project-form .size-value.valid {
    background: rgba(34, 197, 94, 0.2);
    color: #16a34a;
}

.create-project-form .size-value.invalid {
    background: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.create-project-form .size-status {
    font-weight: 600;
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 12px;
}

.create-project-form .size-status.valid {
    background: rgba(34, 197, 94, 0.2);
    color: #16a34a;
}

.create-project-form .size-status.invalid {
    background: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

/* Progress Bar */
.create-project-form .progress-track {
    position: relative;
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.create-project-form .progress-fill {
    height: 100%;
    background: #667eea;
    transition: width 0.3s ease;
    border-radius: 4px;
}

.create-project-form .progress-fill.valid {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.create-project-form .progress-fill.invalid {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Messages */
.create-project-form .error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    color: #dc2626;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.create-project-form .creating-progress {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    color: #1d4ed8;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.create-project-form .creating-progress i {
    animation: spin 1s linear infinite;
}

/* Submit Button */
.create-project-form .button-group {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.create-project-form .create-project-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.create-project-form .create-project-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.create-project-form .create-project-btn:disabled {
    background: #e2e8f0;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Balance Status */
.create-project-form .balance-sufficient {
    color: #16a34a;
    font-weight: 600;
}

.create-project-form .balance-insufficient {
    color: #dc2626;
    font-weight: 600;
}

/* Project Details View */
.project-details-view {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
}

.details-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 24px;
}

.back-button {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(107, 114, 128, 0.3);
    flex-shrink: 0;
}

.back-button:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.4);
}

.project-title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #374151;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.details-content {
    max-width: 1200px;
    margin: 0 auto;
}

.placeholder-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.placeholder-text h2 {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.placeholder-text h2 i {
    color: #6b7280;  /* 灰色工具图标 */
    margin-right: 0.5rem;
}

.placeholder-text p {
    color: #6b7280;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-page {
        padding: 1rem;
    }
    
    .project-header {
        padding: 1.5rem;
    }
    
    .header-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .header-text h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .project-table {
        font-size: 12px;
    }
    
    .project-table th,
    .project-table td {
        padding: 12px 10px;
    }
    
    /* Hide less important columns on mobile */
    .website-cell {
        display: none;
    }
    
    .details-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }
    
    .project-title {
        font-size: 24px;
        white-space: normal;
    }
    
    .placeholder-content {
        padding: 2rem;
    }
    
    .placeholder-text h2 {
        font-size: 2rem;
    }
    
    .placeholder-text p {
        font-size: 1rem;
    }
    
    /* Form responsive */
    .create-project-form .form-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .create-project-form .pixel-art-header {
        flex-direction: column;
        align-items: center;
    }
    
    .create-project-form .size-info {
        justify-content: center;
        text-align: center;
    }
    
    /* Details button text hide on very small screens */
    .details-button {
        padding: 8px 10px;
        min-width: auto;
    }
    
    .countdown-banner {
        margin-bottom: 1rem;
    }
    
    .countdown-content {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .project-table th,
    .project-table td {
        padding: 8px 6px;
    }
    
    .id-cell {
        display: none;
    }
    
    .details-button span {
        display: none;
    }
    
    .details-button {
        min-width: 36px;
        padding: 8px;
    }
    
    .back-button {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .project-title {
        font-size: 20px;
    }
}
