body {
    background-color: #5a6478; 
    margin: 0; 
}

.title-container {
    text-align: center;
    margin: 50px 10px 70px;
}

.title-box {
    display: inline-block;
    background-color: #ffe6b0;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

h2 {
    font-size: 30px;
    margin: 0;
}

.project-container {
    margin: 0 auto;
    padding: 50px;
    background-color: #ffe6b0;
    border-radius: 8px;
    max-width: 1200px;
    box-sizing: border-box;
    box-shadow: 2px 5px rgba(0, 0, 0, 0.15);
}

.project-box {
    width: 400px;
    height: 250px;
    background-color: #ddd;
    margin-right: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
}

.detail-card {
    flex: 1 1 50%;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.step-header {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.step-label {
    text-decoration: none;
    color: gray;
    margin-right: 15px;
}

.step-status {
    text-decoration: none;
    color: blue;
}

.detail-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.detail-row {
    display: flex;
    margin-bottom: 5px;
}

.detail-label {
    flex-basis: 130px;
    flex-shrink: 0;
}

.designer-card {
    flex: 1 1 50%;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.designer-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.designer-info {
    display: flex;
    align-items: center;
}

.designer-image {
    width: 100px;
    height: 130px;
    margin-right: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.designer-description, .designer-price, .designer-name {
    margin: 10px 0 0 0;
}

.payment-container {
    text-align: center;
    margin-top: 20px;
}

.payment-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    background-color: #8d0000;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.payment-button:hover {
    background-color: #c80404;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer; 
}