/* Shared Styles */
.page-header {
    text-align: left;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #30363d;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #ffffff !important;
    margin-bottom: 10px;
}

.page-header p {
    color: #8b949e;
    font-size: 1.1rem;
}

/* Common button styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4a7c9a;
    color: #0d1117;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #4a7c9a;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: #4a7c9a;
    border-color: #4a7c9a;
}

.btn-secondary {
    background-color: transparent;
    color: #8b949e;
    border-color: #30363d;
}

.btn-secondary:hover {
    background-color: #161b22;
    color: #f0f6fc;
    border-color: #4a7c9a;
}

/* Common card styles */
.card {
    background-color: #161b22;
    border-radius: 8px;
    border-left: 4px solid #4a7c9a;
    padding: 20px;
    margin-bottom: 20px;
}

.card h3 {
    color: #ffffff !important;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card p {
    color: #8b949e;
    line-height: 1.6;
    margin-bottom: 15px;
    word-spacing: -0.05em;
}

/* Common tag styles */
.tag {
    background-color: #30363d;
    color: #8b949e;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-right: 8px;
    display: inline-block;
}

.tag:hover {
    background-color: #4a7c9a;
    color: #0d1117;
}

/* Common meta styles */
.meta {
    color: #8b949e;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.meta span {
    margin-right: 15px;
}

.meta .date {
    color: #4a7c9a;
    font-weight: bold;
}

/* Common section styles */
.section {
    margin-bottom: 40px;
}

.section h2 {
    color: #ffffff !important;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-left: 4px solid #4a7c9a;
    padding-left: 15px;
}

