/*--------------------------------------------------------------
	Profile Page Custom CSS
	このファイルはprofile.php専用のスタイルです
--------------------------------------------------------------*/

/*--------------------------------------------------------------
	Background Colors
--------------------------------------------------------------*/
.bg-pink {
    background-color: #D62415;
    color: #fff;
}

.bg-yellow {
    background-color: #F0A118;
    color: #fff;
}

.bg-sky {
    background-color: #004D99;
    color: #fff;
}

.bg-blue {
    background-color: #293857;
    color: #fff;
}

.bg-green {
    background-color: #00A4A4;
    color: #fff;
}

/*--------------------------------------------------------------
	Shop Item (Cast Box)
--------------------------------------------------------------*/
.shop-item {
    background-color: #000;
    border: 1px solid #ee494f;
    padding: 10px;
    margin: 0 10px 10px 0;
    border-radius: 10px;
}

.shop-item-image {
    padding: 5px;
    width: 100%;
    padding-top: 133%;
    position: relative;
    display: inline-block;
    border-radius: 10px;
}

/*--------------------------------------------------------------
	Table Styles for Profile
--------------------------------------------------------------*/
.table-sky > tbody > tr > td:first-child {
    background: #000;
    color: #fff;
    border-bottom: solid 1px #fff;
}

.table-sky > tbody > tr > td {
    border: solid #000 1px;
}

.table-yellow > tbody > tr > td:first-child {
    background: #ff9776;
    color: #fff;
    border-bottom: solid 1px #fff;
}

.table-yellow > tbody > tr > td {
    border: solid #ff9776 1px;
}

/*--------------------------------------------------------------
	Week Table
--------------------------------------------------------------*/
.week_table th.sat {
    color: #FFF;
    background: #8b92ab;
}

.week_table th.sun {
    color: #FFF;
    background: #e69190;
}

/*--------------------------------------------------------------
	Realtime Status Colors
--------------------------------------------------------------*/
.status_1 {
    background: linear-gradient(90deg, #FF4D82 0%, #FF6B9F 100%);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 10px;
}

.status_2 {
    background: linear-gradient(90deg, #4CD964 0%, #5FE777 100%);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 10px;
}

.status_3 {
    background: linear-gradient(90deg, #B768FF 0%, #D595FF 100%);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 10px;
}

/*--------------------------------------------------------------
	Trophy Icon
--------------------------------------------------------------*/
.trophy {
    color: #ffc107;
    margin-right: 5px;
}

/*--------------------------------------------------------------
	Table Striped Styles
--------------------------------------------------------------*/
.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: rgba(227, 166, 66, 0.1);
}

.table-striped > tbody > tr:nth-of-type(even) {
    background-color: rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
	Table Bordered Styles
--------------------------------------------------------------*/
.table-bordered {
    border-color: #E3A642;
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
    border-color: #E3A642;
    color: #fff;
}

.table > thead > tr > th {
    border-bottom-color: #E3A642;
    color: #E3A642;
    background-color: rgba(227, 166, 66, 0.2);
}

/*--------------------------------------------------------------
	Action Buttons for Profile
--------------------------------------------------------------*/
.prof_action_btn .btn {
    transition: all 0.3s ease;
}

.prof_action_btn .btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
	Alert Styles
--------------------------------------------------------------*/
.alert-danger {
    color: #ffffff;
    background: linear-gradient(90deg, #FF4D82 0%, #FF6B9F 100%);
    border: none;
}

.alert-info {
    color: #FFFFFF;
    background: linear-gradient(90deg, #B768FF 0%, #D595FF 100%);
}

.alert-success {
    color: #FFFFFF;
    background: linear-gradient(90deg, #4CD964 0%, #5FE777 100%);
    border: none;
}

.alert-warning {
    color: #fff;
    background: linear-gradient(90deg, #ffc107 0%, #ffb300 100%);
    border: none;
}

/*--------------------------------------------------------------
	Question/Answer Boxes
--------------------------------------------------------------*/
.question_Box .question_image figure img,
.question_Box .answer_image figure img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.arrow_answer {
    position: relative;
    background: #f1f1f1;
    border: 1px solid #b1b1b1;
    border-radius: 10px;
    width: 75%;
    padding: 2%;
}

.arrow_question {
    position: relative;
    background: rgba(227, 166, 66, 0.2);
    border: 1px solid #E3A642;
    border-radius: 10px;
    width: 75%;
    padding: 2%;
    color: #fff;
}

.arrow_answer {
    float: right;
}

.arrow_question {
    float: left;
}

.arrow_answer:after,
.arrow_answer:before,
.arrow_question:after,
.arrow_question:before {
    top: 30%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.arrow_question:after,
.arrow_question:before {
    right: 100%;
}

.arrow_answer:after,
.arrow_answer:before {
    left: 100%;
}

.arrow_answer:after,
.arrow_question:after {
    border-color: rgba(255, 255, 255, 0);
    border-width: 8px;
    margin-top: 0;
}

.arrow_answer:after {
    border-left-color: #f1f1f1;
}

.arrow_question:after {
    border-right-color: rgba(227, 166, 66, 0.2);
}

.arrow_answer:before,
.arrow_question:before {
    border-color: rgba(200, 200, 200, 0);
    border-width: 9px;
    margin-top: -1px;
}

.arrow_answer:before {
    border-left-color: #b1b1b1;
}

.arrow_question:before {
    border-right-color: #E3A642;
}

.question_image {
    float: left;
    padding-right: 15px;
}

.answer_image {
    float: right;
    padding-left: 15px;
}

.answer_image img,
.question_image img {
    width: 100%;
}

.answer_Box,
.question_Box {
    width: 100%;
    overflow: hidden;
    margin-bottom: 3%;
}

/*--------------------------------------------------------------
	Text Colors
--------------------------------------------------------------*/
.text-danger {
    color: #ee494f;
}

.text-success {
    color: #4CD964;
}

.text-info {
    color: #B768FF;
}

.text-warning {
    color: #ffc107;
}

/*--------------------------------------------------------------
	Label Badges
--------------------------------------------------------------*/
.label {
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25em;
}

.label-danger {
    background-color: #ee494f;
}

.label-success {
    background-color: #4CD964;
}

.label-info {
    background-color: #B768FF;
}

.label-warning {
    background-color: #ffc107;
}

/*--------------------------------------------------------------
	Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 425px) {
    .shop-item {
        padding: 5px;
        margin: 0 5px 5px 0;
    }
}
