* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 10px 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#name {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: left;
    font-weight: bold;
}

#label {
    font-size: 1.2rem;
    color: #000000;
    text-align: left;
    margin-top: 0px;
}

#summary {
    font-size: 1.2rem;
    color: #790303;
    text-align: left;
    margin-top: 0;
    font-style: italic;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid #667eea;
    object-fit: cover;
    display: block;
}

.header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    justify-content: left;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #555;
}

.contact-icons {
    width: 45px;
    height: 45px;
    vertical-align:middle;
    border-radius:4px;
}

.tabs {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tab-buttons {
    display: flex;
    background: rgba(0, 0, 0, 0.05);
}

.tab-button {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #667eea;
}

.tab-button:hover {
    background: rgba(102, 126, 234, 0.05);
    color: #667eea;
}

.tab-content {
    padding: 20px 40px;
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane.active {
    display: block;
}

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

.section-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #667eea;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.volunteer-header-meta{
    display: flex;
}

.volunteer-header {
    margin-top: 0;
    margin-left: 0;
    text-align: left;
    align-items: left;
    color: #0c2e50;
    font-weight: bold;
    font-size: x-large;
    vertical-align: top;
    font-style: normal;
}

.volunteer-header-sub {
    margin-top: 0;
    margin-left: 0;
    text-align: left;
    align-items: left;
    color: #0c2e50;
    font-weight: bold;
    font-size: large;
    vertical-align: top;
    font-style: normal;
}

.education-header {
    display: flex;
    /* justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px; */
}

.education-card {
    display: block;
    /* justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px; */
}

.education-img {
    margin-top: 0;
    margin-left: 0;
    align-items: left;
    vertical-align: top;
}

.education-img img {
    width: 60px;
    height: 60px;
    object-fit: scale-down;
    border-radius: '8px';
}

.education-content {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
}


.location {
    font-size: 0.9rem;
    color: #000000;
    margin-top: 5px;
    margin-left: 0;
    text-align: left;
    align-items: left;
    font-style: normal;
}

.education-title {
    margin-top: 0;
    text-align: left;
    align-items: left;
}

.education-institution {
    font-weight: 700;
    font-size: 1.2rem;
    color: #0c2e50;
    font-style: normal;
}
.education-type {
    font-style: italic;
    color: #000000;
    font-size: large;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 0;
    text-align: left;
    align-items: left;
}

.card .meta {
    color: #000000;
    font-size: 0.9rem;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: 0;
    margin-top: 0;
    display: flex;
    align-items: right;
    text-align: right;
    justify-content: right;
    font-style: normal;
}

.card .description {
    color: #000000;
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

.skills {
    color: #000000;
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.json-input {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.json-input h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

textarea {
    width: 100%;
    height: 200px;
    padding: 15px;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    resize: vertical;
    transition: border-color 0.3s ease;
}

textarea:focus {
    outline: none;
    border-color: #667eea;
}

.load-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 15px;
}

.load-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.empty-state {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 5px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .header {
        padding: 20px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-content {
        padding: 20px;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }
}