/* css/sub_pages_style.css */
.admin-container {
    padding: 40px 0;
}
.card {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
.card-header {
    background-color: #0d6efd;
    color: white;
    border-radius: 10px 10px 0 0 !important;
    padding: 1rem 1.5rem;
}
.card-body {
    padding: 1.5rem;
}
.home-link {
    margin-bottom: 1rem;
}
.home-link a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}
.home-link a:hover {
    text-decoration: underline;
}
.content-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}
.content-section:last-child {
    margin-bottom: 0;
}
.content-section h2 {
    color: #0d6efd;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #dee2e6;
    display: flex;
    align-items: center;
}
.content-section h2 i {
    margin-right: 0.5rem;
}
@media (max-width: 768px) {
    .admin-container {
        padding: 20px 15px;
    }
    .content-section {
        padding: 1rem;
    }
}

/* footer 링크 스타일 */
footer a {
	text-decoration: none !important; 
	color: #0D6EFD;
}

footer a:hover {
	text-decoration: none !important;
	font-weight: bold;
}

.highlight-red {
            background-color: #dc3545;
            color: white;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 500;
        }

.highlight-green {
			background-color: #198754;
			color: white;
			padding: 0.2rem 0.5rem;
			border-radius: 4px;
			font-weight: 500;
		}

.highlight-blue {
			background-color: #CCF0FF;
			color: #000000;
			padding: 0.2rem 0.5rem;
			border-radius: 4px;
			font-weight: 500;
		}