@import url("../../../.common/styles/font.css");

/* 基礎樣式 */

/* 標題區域樣式 */
.header {
    text-align: center;
    margin: 20px 0;
}

.header h1 {
    font-size: 32px;
    color: var(--clr-black);
    margin-bottom: 10px;
    font-weight: bold;
}

.header p {
	padding:0 48px;
    font-size: 16px;
    color: var(--clr-darkgrey);
}

/* 容器樣式 */
.container {
    background-color: var(--clr-brightwhite);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	width:calc(100% - 20px);   
    max-width: 1000px;
	margin-left:10px;
	margin-right:10px;
    margin-bottom: 20px;
	padding: 10px 20px;
	color:var(--clr-black);
}

/* 文件樹樣式 */
.file-tree {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.file-tree ul {
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
    border-left: 1px solid #ddd;
}

.folder {
    cursor: pointer;
    padding: 5px 0;
    font-weight: bold;
}

.folder::before {
    content: "📁 ";
    margin-right: 5px;
}

.folder.open::before {
    content: "📂 ";
}

.file {
    padding: 5px 0;
    color: var(--clr-darkgrey);
}

.file a {
    text-decoration: none;
    color: inherit;
}

.file::before {
    content: "📄 ";
    margin-right: 5px;
}

.hidden {
    display: none;
}



/* 響應式佈局 */
@media (max-width: 768px) {
    .container {
    }

    h1 {
        font-size: 1.5em;
    }
	
	#projects-container {
    width: 100%;
}
}
